Enum webxr_api::session::SessionMsg
source · enum SessionMsg {
CreateLayer(ContextId, LayerInit, Sender<Result<LayerId, Error>>),
DestroyLayer(ContextId, LayerId),
SetLayers(Vec<(ContextId, LayerId)>),
SetEventDest(Sender<Event>),
UpdateClipPlanes(f32, f32),
StartRenderLoop,
RenderAnimationFrame,
RequestHitTest(HitTestSource),
CancelHitTest(HitTestId),
UpdateFrameRate(f32, Sender<f32>),
Quit,
GetBoundsGeometry(Sender<Option<Vec<Point2D<f32, Floor>>>>),
}
Variants§
CreateLayer(ContextId, LayerInit, Sender<Result<LayerId, Error>>)
DestroyLayer(ContextId, LayerId)
SetLayers(Vec<(ContextId, LayerId)>)
SetEventDest(Sender<Event>)
UpdateClipPlanes(f32, f32)
StartRenderLoop
RenderAnimationFrame
RequestHitTest(HitTestSource)
CancelHitTest(HitTestId)
UpdateFrameRate(f32, Sender<f32>)
Quit
GetBoundsGeometry(Sender<Option<Vec<Point2D<f32, Floor>>>>)
Trait Implementations§
source§impl Debug for SessionMsg
impl Debug for SessionMsg
source§impl<'de> Deserialize<'de> for SessionMsg
impl<'de> Deserialize<'de> for SessionMsg
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SessionMsg
impl !RefUnwindSafe for SessionMsg
impl Send for SessionMsg
impl !Sync for SessionMsg
impl Unpin for SessionMsg
impl UnwindSafe for SessionMsg
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more