pub struct XrTransform {
pub translate: [f32; 3],
pub rotate: [f32; 3],
pub scale: [f32; 3],
}Fields§
§translate: [f32; 3]§rotate: [f32; 3]§scale: [f32; 3]Trait Implementations§
Source§impl Clone for XrTransform
impl Clone for XrTransform
Source§fn clone(&self) -> XrTransform
fn clone(&self) -> XrTransform
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for XrTransform
impl Debug for XrTransform
Source§impl Default for XrTransform
impl Default for XrTransform
Source§fn default() -> XrTransform
fn default() -> XrTransform
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for XrTransform
impl RefUnwindSafe for XrTransform
impl Send for XrTransform
impl Sync for XrTransform
impl Unpin for XrTransform
impl UnsafeUnpin for XrTransform
impl UnwindSafe for XrTransform
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