pub struct XRUpdateEvent {
    pub time: f64,
    pub head_transform: Transform,
    pub inputs: Vec<XRInput>,
    pub last_inputs: Option<Vec<XRInput>>,
}Fields§
§time: f64§head_transform: Transform§inputs: Vec<XRInput>§last_inputs: Option<Vec<XRInput>>Trait Implementations§
Source§impl Clone for XRUpdateEvent
 
impl Clone for XRUpdateEvent
Source§fn clone(&self) -> XRUpdateEvent
 
fn clone(&self) -> XRUpdateEvent
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreAuto Trait Implementations§
impl Freeze for XRUpdateEvent
impl RefUnwindSafe for XRUpdateEvent
impl Send for XRUpdateEvent
impl Sync for XRUpdateEvent
impl Unpin for XRUpdateEvent
impl UnwindSafe for XRUpdateEvent
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