pub struct DiscoverSummary {
pub total: usize,
pub by_kind: BTreeMap<RootKind, usize>,
pub by_confidence: BTreeMap<Confidence, usize>,
}Fields§
§total: usize§by_kind: BTreeMap<RootKind, usize>§by_confidence: BTreeMap<Confidence, usize>Trait Implementations§
Source§impl Clone for DiscoverSummary
impl Clone for DiscoverSummary
Source§fn clone(&self) -> DiscoverSummary
fn clone(&self) -> DiscoverSummary
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 moreSource§impl Debug for DiscoverSummary
impl Debug for DiscoverSummary
Source§impl PartialEq for DiscoverSummary
impl PartialEq for DiscoverSummary
Source§fn eq(&self, other: &DiscoverSummary) -> bool
fn eq(&self, other: &DiscoverSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DiscoverSummary
impl StructuralPartialEq for DiscoverSummary
Auto Trait Implementations§
impl Freeze for DiscoverSummary
impl RefUnwindSafe for DiscoverSummary
impl Send for DiscoverSummary
impl Sync for DiscoverSummary
impl Unpin for DiscoverSummary
impl UnsafeUnpin for DiscoverSummary
impl UnwindSafe for DiscoverSummary
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