pub struct FamilyView {
pub family: String,
pub books: Vec<BookView>,
}Expand description
One level-1 family (subsystem) in a GroupedView, holding its domain books.
Fields§
§family: StringFamily id derived from the book prefix (numbers, organ, codec, …).
books: Vec<BookView>The domain books in this family, in the same order as CookbookView.
Trait Implementations§
Source§impl Clone for FamilyView
impl Clone for FamilyView
Source§fn clone(&self) -> FamilyView
fn clone(&self) -> FamilyView
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 FamilyView
impl Debug for FamilyView
impl Eq for FamilyView
Source§impl PartialEq for FamilyView
impl PartialEq for FamilyView
impl StructuralPartialEq for FamilyView
Auto Trait Implementations§
impl Freeze for FamilyView
impl RefUnwindSafe for FamilyView
impl Send for FamilyView
impl Sync for FamilyView
impl Unpin for FamilyView
impl UnsafeUnpin for FamilyView
impl UnwindSafe for FamilyView
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