pub struct MotifOccurrenceResult {
pub start_index: usize,
pub timestamp: i64,
pub distance: f32,
}Expand description
A single motif occurrence.
Fields§
§start_index: usizeStart index in trajectory.
timestamp: i64Timestamp.
distance: f32Distance to canonical.
Trait Implementations§
Source§impl Clone for MotifOccurrenceResult
impl Clone for MotifOccurrenceResult
Source§fn clone(&self) -> MotifOccurrenceResult
fn clone(&self) -> MotifOccurrenceResult
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 MotifOccurrenceResult
impl RefUnwindSafe for MotifOccurrenceResult
impl Send for MotifOccurrenceResult
impl Sync for MotifOccurrenceResult
impl Unpin for MotifOccurrenceResult
impl UnwindSafe for MotifOccurrenceResult
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