pub struct TemporalJoinResult {
pub start: i64,
pub end: i64,
pub mean_distance: f32,
pub min_distance: f32,
pub points_a: usize,
pub points_b: usize,
}Expand description
A time window during which two entities were semantically close.
Fields§
§start: i64Start of the convergence window.
end: i64End of the convergence window.
mean_distance: f32Mean pairwise distance during the window.
min_distance: f32Minimum pairwise distance during the window.
points_a: usizeNumber of points from entity A in the window.
points_b: usizeNumber of points from entity B in the window.
Trait Implementations§
Source§impl Clone for TemporalJoinResult
impl Clone for TemporalJoinResult
Source§fn clone(&self) -> TemporalJoinResult
fn clone(&self) -> TemporalJoinResult
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 TemporalJoinResult
impl RefUnwindSafe for TemporalJoinResult
impl Send for TemporalJoinResult
impl Sync for TemporalJoinResult
impl Unpin for TemporalJoinResult
impl UnwindSafe for TemporalJoinResult
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