pub struct TemporalJoinResultEntry {
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 convergence window from a temporal join query.
Fields§
§start: i64Start of the convergence window.
end: i64End of the convergence window.
mean_distance: f32Mean distance during convergence.
min_distance: f32Minimum distance during convergence.
points_a: usizePoints from entity A in window.
points_b: usizePoints from entity B in window.
Trait Implementations§
Source§impl Clone for TemporalJoinResultEntry
impl Clone for TemporalJoinResultEntry
Source§fn clone(&self) -> TemporalJoinResultEntry
fn clone(&self) -> TemporalJoinResultEntry
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 TemporalJoinResultEntry
impl RefUnwindSafe for TemporalJoinResultEntry
impl Send for TemporalJoinResultEntry
impl Sync for TemporalJoinResultEntry
impl Unpin for TemporalJoinResultEntry
impl UnwindSafe for TemporalJoinResultEntry
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