pub struct SlideSection {
pub name: String,
pub slides: Vec<usize>,
}Expand description
A section of the deck with the slides it holds, resolved to slide indexes.
Fields§
§name: String§slides: Vec<usize>Zero-based slide indexes in section order; ids that match no slide are dropped.
Trait Implementations§
Source§impl Clone for SlideSection
impl Clone for SlideSection
Source§fn clone(&self) -> SlideSection
fn clone(&self) -> SlideSection
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 SlideSection
impl Debug for SlideSection
impl Eq for SlideSection
Source§impl PartialEq for SlideSection
impl PartialEq for SlideSection
impl StructuralPartialEq for SlideSection
Auto Trait Implementations§
impl Freeze for SlideSection
impl RefUnwindSafe for SlideSection
impl Send for SlideSection
impl Sync for SlideSection
impl Unpin for SlideSection
impl UnsafeUnpin for SlideSection
impl UnwindSafe for SlideSection
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