pub struct RecommenderStats {
pub total_schemas: usize,
pub total_patterns: usize,
pub total_usage_records: usize,
pub most_used_schema: Option<String>,
}Expand description
Statistics about the recommendation engine.
Fields§
§total_schemas: usize§total_patterns: usize§total_usage_records: usize§most_used_schema: Option<String>Trait Implementations§
Source§impl Clone for RecommenderStats
impl Clone for RecommenderStats
Source§fn clone(&self) -> RecommenderStats
fn clone(&self) -> RecommenderStats
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 moreAuto Trait Implementations§
impl Freeze for RecommenderStats
impl RefUnwindSafe for RecommenderStats
impl Send for RecommenderStats
impl Sync for RecommenderStats
impl Unpin for RecommenderStats
impl UnwindSafe for RecommenderStats
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