pub struct KnnResult {
pub entity_id: u64,
pub timestamp: i64,
pub score: f32,
}Expand description
A single kNN result.
Fields§
§entity_id: u64Entity identifier.
timestamp: i64Timestamp of the matched point.
score: f32Combined spatiotemporal score.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KnnResult
impl RefUnwindSafe for KnnResult
impl Send for KnnResult
impl Sync for KnnResult
impl Unpin for KnnResult
impl UnwindSafe for KnnResult
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