pub struct Vector {
pub x: f32,
pub y: f32,
pub z: f32,
}
Fields§
§x: f32
§y: f32
§z: f32
Implementations§
Trait Implementations§
Source§impl Into<FMOD_VECTOR> for Vector
impl Into<FMOD_VECTOR> for Vector
Source§fn into(self) -> FMOD_VECTOR
fn into(self) -> FMOD_VECTOR
Converts this type into the (usually inferred) input type.
Source§impl TryFrom<FMOD_VECTOR> for Vector
impl TryFrom<FMOD_VECTOR> for Vector
impl Copy for Vector
impl StructuralPartialEq for Vector
Auto Trait Implementations§
impl Freeze for Vector
impl RefUnwindSafe for Vector
impl Send for Vector
impl Sync for Vector
impl Unpin for Vector
impl UnwindSafe for Vector
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