#[repr(C)]pub struct ImuMeta {
pub lin_acc_x: f64,
pub lin_acc_y: f64,
pub lin_acc_z: f64,
pub ang_vel_x: f64,
pub ang_vel_y: f64,
pub ang_vel_z: f64,
pub orientation_w: f64,
pub orientation_x: f64,
pub orientation_y: f64,
pub orientation_z: f64,
pub timestamp_ns: i64,
}Expand description
C++-compatible metadata structs shared across the cxx::bridge boundary. Fields are named after physical quantities and need no further prose.
Fields§
§lin_acc_x: f64§lin_acc_y: f64§lin_acc_z: f64§ang_vel_x: f64§ang_vel_y: f64§ang_vel_z: f64§orientation_w: f64§orientation_x: f64§orientation_y: f64§orientation_z: f64§timestamp_ns: i64Trait Implementations§
Auto Trait Implementations§
impl Freeze for ImuMeta
impl RefUnwindSafe for ImuMeta
impl Send for ImuMeta
impl Sync for ImuMeta
impl Unpin for ImuMeta
impl UnsafeUnpin for ImuMeta
impl UnwindSafe for ImuMeta
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