pub struct SetSimilarityTrace {
pub candidate_generation_us: u64,
pub gather_us: u64,
pub parse_us: u64,
pub score_us: u64,
pub candidate_count: usize,
pub verified_count: usize,
}Fields§
§candidate_generation_us: u64§gather_us: u64§parse_us: u64§score_us: u64§candidate_count: usize§verified_count: usizeTrait Implementations§
Source§impl Clone for SetSimilarityTrace
impl Clone for SetSimilarityTrace
Source§fn clone(&self) -> SetSimilarityTrace
fn clone(&self) -> SetSimilarityTrace
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 moreimpl Copy for SetSimilarityTrace
Source§impl Debug for SetSimilarityTrace
impl Debug for SetSimilarityTrace
Source§impl Default for SetSimilarityTrace
impl Default for SetSimilarityTrace
Source§fn default() -> SetSimilarityTrace
fn default() -> SetSimilarityTrace
Returns the “default value” for a type. Read more
impl Eq for SetSimilarityTrace
Source§impl PartialEq for SetSimilarityTrace
impl PartialEq for SetSimilarityTrace
impl StructuralPartialEq for SetSimilarityTrace
Auto Trait Implementations§
impl Freeze for SetSimilarityTrace
impl RefUnwindSafe for SetSimilarityTrace
impl Send for SetSimilarityTrace
impl Sync for SetSimilarityTrace
impl Unpin for SetSimilarityTrace
impl UnsafeUnpin for SetSimilarityTrace
impl UnwindSafe for SetSimilarityTrace
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more