pub struct Motion {
pub accel_x: i16,
pub accel_y: i16,
pub accel_z: i16,
pub gyro_roll: i16,
pub gyro_pitch: i16,
pub gyro_yaw: i16,
pub angle_roll: i16,
pub angle_pitch: i16,
pub angle_yaw: i16,
}Fields§
§accel_x: i16§accel_y: i16§accel_z: i16§gyro_roll: i16§gyro_pitch: i16§gyro_yaw: i16§angle_roll: i16§angle_pitch: i16§angle_yaw: i16Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Motion
impl RefUnwindSafe for Motion
impl Send for Motion
impl Sync for Motion
impl Unpin for Motion
impl UnwindSafe for Motion
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