pub struct SlideGroup {
pub logical_index: usize,
pub pages: Vec<usize>,
pub notes: Option<String>,
}Expand description
A logical slide group — one or more PDF pages representing build steps of a single logical slide.
Fields§
§logical_index: usize0-based logical slide index.
pages: Vec<usize>Raw PDF page indices belonging to this group (ordered).
notes: Option<String>Markdown notes for this logical slide, if any.
Trait Implementations§
Source§impl Clone for SlideGroup
impl Clone for SlideGroup
Source§fn clone(&self) -> SlideGroup
fn clone(&self) -> SlideGroup
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 SlideGroup
impl RefUnwindSafe for SlideGroup
impl Send for SlideGroup
impl Sync for SlideGroup
impl Unpin for SlideGroup
impl UnsafeUnpin for SlideGroup
impl UnwindSafe for SlideGroup
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