pub struct SuggestionStats {
pub total: usize,
pub by_type: BTreeMap<String, usize>,
pub by_confidence: BTreeMap<String, usize>,
pub high_confidence_count: usize,
pub actionable_count: usize,
}Fields§
§total: usize§by_type: BTreeMap<String, usize>§by_confidence: BTreeMap<String, usize>§high_confidence_count: usize§actionable_count: usizeTrait Implementations§
Source§impl Clone for SuggestionStats
impl Clone for SuggestionStats
Source§fn clone(&self) -> SuggestionStats
fn clone(&self) -> SuggestionStats
Returns a duplicate 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 moreSource§impl Debug for SuggestionStats
impl Debug for SuggestionStats
Auto Trait Implementations§
impl Freeze for SuggestionStats
impl RefUnwindSafe for SuggestionStats
impl Send for SuggestionStats
impl Sync for SuggestionStats
impl Unpin for SuggestionStats
impl UnsafeUnpin for SuggestionStats
impl UnwindSafe for SuggestionStats
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