pub struct ProfileStats {
pub total_genres: usize,
pub total_tags: usize,
pub total_series: usize,
pub top_genres: Vec<(String, f32)>,
pub top_tags: Vec<(String, String, f32)>,
}Fields§
§total_genres: usize§total_series: usize§top_genres: Vec<(String, f32)>Trait Implementations§
Source§impl Clone for ProfileStats
impl Clone for ProfileStats
Source§fn clone(&self) -> ProfileStats
fn clone(&self) -> ProfileStats
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 ProfileStats
impl Debug for ProfileStats
Auto Trait Implementations§
impl Freeze for ProfileStats
impl RefUnwindSafe for ProfileStats
impl Send for ProfileStats
impl Sync for ProfileStats
impl Unpin for ProfileStats
impl UnwindSafe for ProfileStats
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