pub struct ChapterGroup {
pub items: Vec<ChapterGroupItem>,
pub tags: Vec<Tag>,
pub visuals: Vec<Visual>,
}Expand description
A group of chapters and/or other chapter groups.
Fields§
§items: Vec<ChapterGroupItem>A list of chapters and/or chapter groups.
The tags associated with the group of chapters.
visuals: Vec<Visual>The visuals associated with the group of chapters.
Trait Implementations§
Source§impl Clone for ChapterGroup
impl Clone for ChapterGroup
Source§fn clone(&self) -> ChapterGroup
fn clone(&self) -> ChapterGroup
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 moreAuto Trait Implementations§
impl Freeze for ChapterGroup
impl RefUnwindSafe for ChapterGroup
impl Send for ChapterGroup
impl Sync for ChapterGroup
impl Unpin for ChapterGroup
impl UnsafeUnpin for ChapterGroup
impl UnwindSafe for ChapterGroup
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