pub struct ProjectTaxon {
pub project: String,
pub rooms: Vec<Room>,
pub total: usize,
}Expand description
One project’s taxonomy: its rooms (topics) with counts, plus a total.
Fields§
§project: StringThe project name.
rooms: Vec<Room>Rooms under this project, ordered by count desc then topic.
total: usizeTotal memories across this project’s rooms.
Trait Implementations§
Source§impl Clone for ProjectTaxon
impl Clone for ProjectTaxon
Source§fn clone(&self) -> ProjectTaxon
fn clone(&self) -> ProjectTaxon
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 ProjectTaxon
impl Debug for ProjectTaxon
impl Eq for ProjectTaxon
Source§impl PartialEq for ProjectTaxon
impl PartialEq for ProjectTaxon
impl StructuralPartialEq for ProjectTaxon
Auto Trait Implementations§
impl Freeze for ProjectTaxon
impl RefUnwindSafe for ProjectTaxon
impl Send for ProjectTaxon
impl Sync for ProjectTaxon
impl Unpin for ProjectTaxon
impl UnsafeUnpin for ProjectTaxon
impl UnwindSafe for ProjectTaxon
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