#[repr(C)]pub struct Vector3 {
pub x: c_float,
pub y: c_float,
pub z: c_float,
}
Expand description
Vector3, 3 components
Fields§
§x: c_float
Vector x component
y: c_float
Vector y component
z: c_float
Vector z component
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Vector3
impl RefUnwindSafe for Vector3
impl Send for Vector3
impl Sync for Vector3
impl Unpin for Vector3
impl UnwindSafe for Vector3
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