pub(crate) trait XRSystemMethods<D>where
D: DomTypes,{
// Required methods
fn IsSessionSupported(
&self,
mode: XRSessionMode,
_can_gc: CanGc,
) -> Rc<<D as DomTypes>::Promise>;
fn RequestSession(
&self,
mode: XRSessionMode,
parameters: RootedTraceableBox<XRSessionInit>,
_comp: InRealm<'_>,
_can_gc: CanGc,
) -> Rc<<D as DomTypes>::Promise>;
fn Test(&self) -> Root<Dom<<D as DomTypes>::XRTest>>;
}