#[repr(C)]pub struct ovrVector3f {
pub _align: [u32; 0],
pub x: f32,
pub y: f32,
pub z: f32,
}Expand description
A 3D vector with f32 components.
Fields§
§_align: [u32; 0]§x: f32§y: f32§z: f32Trait Implementations§
Source§impl Clone for ovrVector3f
impl Clone for ovrVector3f
Source§fn clone(&self) -> ovrVector3f
fn clone(&self) -> ovrVector3f
Returns a duplicate 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 moreSource§impl Debug for ovrVector3f
impl Debug for ovrVector3f
impl Copy for ovrVector3f
Auto Trait Implementations§
impl Freeze for ovrVector3f
impl RefUnwindSafe for ovrVector3f
impl Send for ovrVector3f
impl Sync for ovrVector3f
impl Unpin for ovrVector3f
impl UnwindSafe for ovrVector3f
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