pub struct RecallResult {
pub tile_id: u64,
pub content: u64,
pub confidence: f64,
pub distance: f64,
pub heading: f64,
}Expand description
Result of a recall operation.
Fields§
§tile_id: u64§content: u64§confidence: f64§distance: f64§heading: f64Trait Implementations§
Source§impl Clone for RecallResult
impl Clone for RecallResult
Source§fn clone(&self) -> RecallResult
fn clone(&self) -> RecallResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RecallResult
impl RefUnwindSafe for RecallResult
impl Send for RecallResult
impl Sync for RecallResult
impl Unpin for RecallResult
impl UnsafeUnpin for RecallResult
impl UnwindSafe for RecallResult
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