pub struct ImuStream {
pub samples: Vec<ImuSample>,
}Expand description
A buffered sequence of ImuSample records with basic statistics.
Fields§
§samples: Vec<ImuSample>Raw samples in chronological order.
Implementations§
Source§impl ImuStream
impl ImuStream
Sourcepub fn mean_accel(&self) -> [f64; 3]
pub fn mean_accel(&self) -> [f64; 3]
Compute the mean accelerometer vector over all samples.
Returns [0,0,0] for an empty stream.
Sourcepub fn to_bytes(&self) -> Vec<u8> ⓘ
pub fn to_bytes(&self) -> Vec<u8> ⓘ
Serialize the entire stream to a byte vector.
Format: 8-byte little-endian u64 count, followed by concatenated
80-byte sample records.
Sourcepub fn from_bytes(data: &[u8]) -> Option<Self>
pub fn from_bytes(data: &[u8]) -> Option<Self>
Deserialize a stream from bytes produced by ImuStream::to_bytes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ImuStream
impl RefUnwindSafe for ImuStream
impl Send for ImuStream
impl Sync for ImuStream
impl Unpin for ImuStream
impl UnsafeUnpin for ImuStream
impl UnwindSafe for ImuStream
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.