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