pub struct InternalStates { /* private fields */ }
Expand description
AHRS algorithm flags.
Implementations§
Source§impl InternalStates
impl InternalStates
Sourcepub fn acceleration_error(&self) -> f32
pub fn acceleration_error(&self) -> f32
Acceleration error.
See https://github.com/xioTechnologies/Fusion for details.
Sourcepub fn accelerometer_ignored(&self) -> bool
pub fn accelerometer_ignored(&self) -> bool
Accelerometer ignored.
See https://github.com/xioTechnologies/Fusion for details.
Sourcepub fn acceleration_recovery_trigger(&self) -> f32
pub fn acceleration_recovery_trigger(&self) -> f32
Acceleration recovery trigger.
See https://github.com/xioTechnologies/Fusion for details.
Sourcepub fn magnetic_error(&self) -> f32
pub fn magnetic_error(&self) -> f32
Angular error.
See https://github.com/xioTechnologies/Fusion for details.
Sourcepub fn magnetometer_ignored(&self) -> bool
pub fn magnetometer_ignored(&self) -> bool
Magnetometer ignored.
See https://github.com/xioTechnologies/Fusion for details.
Sourcepub fn magnetic_recovery_trigger(&self) -> f32
pub fn magnetic_recovery_trigger(&self) -> f32
Magnetic recovery trigger.
See https://github.com/xioTechnologies/Fusion for details.
Auto Trait Implementations§
impl Freeze for InternalStates
impl RefUnwindSafe for InternalStates
impl Send for InternalStates
impl Sync for InternalStates
impl Unpin for InternalStates
impl UnwindSafe for InternalStates
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