pub struct GroupJoinResult {
pub start: i64,
pub end: i64,
pub n_converged: usize,
pub converged_entities: Vec<u64>,
pub mean_distance: f32,
}Expand description
A time window during which a subset of a group converged.
Fields§
§start: i64Start of the convergence window.
end: i64End of the convergence window.
n_converged: usizeNumber of entities within epsilon during this window.
converged_entities: Vec<u64>Entity IDs that converged.
mean_distance: f32Mean pairwise distance among converged entities.
Trait Implementations§
Source§impl Clone for GroupJoinResult
impl Clone for GroupJoinResult
Source§fn clone(&self) -> GroupJoinResult
fn clone(&self) -> GroupJoinResult
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 GroupJoinResult
impl RefUnwindSafe for GroupJoinResult
impl Send for GroupJoinResult
impl Sync for GroupJoinResult
impl Unpin for GroupJoinResult
impl UnwindSafe for GroupJoinResult
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