pub struct VelocityVector {
pub first_vector_component: f32,
pub second_vector_component: f32,
pub third_vector_component: f32,
}
Fields§
§first_vector_component: f32
§second_vector_component: f32
§third_vector_component: f32
Implementations§
Trait Implementations§
Source§impl Clone for VelocityVector
impl Clone for VelocityVector
Source§fn clone(&self) -> VelocityVector
fn clone(&self) -> VelocityVector
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 VelocityVector
impl Debug for VelocityVector
Source§impl Default for VelocityVector
impl Default for VelocityVector
Source§fn default() -> VelocityVector
fn default() -> VelocityVector
Returns the “default value” for a type. Read more
impl Copy for VelocityVector
Auto Trait Implementations§
impl Freeze for VelocityVector
impl RefUnwindSafe for VelocityVector
impl Send for VelocityVector
impl Sync for VelocityVector
impl Unpin for VelocityVector
impl UnwindSafe for VelocityVector
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