pub struct Acceleration {
pub x: f64,
pub y: f64,
pub z: f64,
}
Expand description
Raw Accelerometer values
Fields§
§x: f64
accelleration in the x axis
y: f64
accelleration in the y axis
z: f64
accelleration in the z axis
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