pub struct Output {
pub timestamp_ns: i64,
pub signal: f64,
pub sensor: OutputKind,
pub accuracy: Accuracy,
}Expand description
Single virtual sensor output of the BSEC algorithm.
Fields§
§timestamp_ns: i64Timestamp (nanoseconds) of the measurement.
signal: f64Signal value of the virtual sensor.
sensor: OutputKindType of virtual sensor.
accuracy: AccuracyAccuracy of the virtual sensor.
Trait Implementations§
impl Copy for Output
impl StructuralPartialEq for Output
Auto Trait Implementations§
impl Freeze for Output
impl RefUnwindSafe for Output
impl Send for Output
impl Sync for Output
impl Unpin for Output
impl UnwindSafe for Output
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