pub struct SlideEntry {
pub layout: SlideLayout,
pub kicker: Option<String>,
pub notes: Option<String>,
pub children: Vec<Block>,
}Expand description
A single slide extracted from a ::slide block (or an auto-split section).
Fields§
§layout: SlideLayout§kicker: Option<String>§notes: Option<String>§children: Vec<Block>Trait Implementations§
Source§impl Clone for SlideEntry
impl Clone for SlideEntry
Source§fn clone(&self) -> SlideEntry
fn clone(&self) -> SlideEntry
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 SlideEntry
impl RefUnwindSafe for SlideEntry
impl Send for SlideEntry
impl Sync for SlideEntry
impl Unpin for SlideEntry
impl UnsafeUnpin for SlideEntry
impl UnwindSafe for SlideEntry
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