pub struct AnchorSummary {
pub mean: Vec<f32>,
pub min: Vec<f32>,
pub trend: Vec<f32>,
pub last: Vec<f32>,
}Expand description
Summary statistics for anchor proximity over a trajectory.
Fields§
§mean: Vec<f32>Mean distance to each anchor over the trajectory.
min: Vec<f32>Minimum distance (closest approach) to each anchor.
trend: Vec<f32>Linear trend (slope) of distance to each anchor. Negative = approaching the anchor over time.
last: Vec<f32>Distance at the last time point.
Trait Implementations§
Source§impl Clone for AnchorSummary
impl Clone for AnchorSummary
Source§fn clone(&self) -> AnchorSummary
fn clone(&self) -> AnchorSummary
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AnchorSummary
impl RefUnwindSafe for AnchorSummary
impl Send for AnchorSummary
impl Sync for AnchorSummary
impl Unpin for AnchorSummary
impl UnwindSafe for AnchorSummary
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