pub struct ImuSample {
pub ax: f32,
pub ay: f32,
pub az: f32,
pub gx: f32,
pub gy: f32,
pub gz: f32,
}Expand description
A single synchronized IMU sample in SI units.
Fields§
§ax: f32Linear acceleration in m/s^2 (sensor frame).
ay: f32§az: f32§gx: f32Angular rate in rad/s (sensor frame).
gy: f32§gz: f32Trait Implementations§
impl Copy for ImuSample
Auto Trait Implementations§
impl Freeze for ImuSample
impl RefUnwindSafe for ImuSample
impl Send for ImuSample
impl Sync for ImuSample
impl Unpin for ImuSample
impl UnsafeUnpin for ImuSample
impl UnwindSafe for ImuSample
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