pub struct Acceleration(/* private fields */);Expand description
Linear acceleration (m/s^2). Can be negative to indicate direction in 1D context.
Implementations§
Source§impl Acceleration
impl Acceleration
Trait Implementations§
Source§impl Clone for Acceleration
impl Clone for Acceleration
Source§fn clone(&self) -> Acceleration
fn clone(&self) -> Acceleration
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 Acceleration
impl Debug for Acceleration
Source§impl Default for Acceleration
impl Default for Acceleration
Source§fn default() -> Acceleration
fn default() -> Acceleration
Returns the “default value” for a type. Read more
Source§impl From<Acceleration> for f64
impl From<Acceleration> for f64
Source§fn from(val: Acceleration) -> Self
fn from(val: Acceleration) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Acceleration
impl PartialEq for Acceleration
Source§impl PartialOrd for Acceleration
impl PartialOrd for Acceleration
impl Copy for Acceleration
impl StructuralPartialEq for Acceleration
Auto Trait Implementations§
impl Freeze for Acceleration
impl RefUnwindSafe for Acceleration
impl Send for Acceleration
impl Sync for Acceleration
impl Unpin for Acceleration
impl UnwindSafe for Acceleration
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