pub struct MarkdownOptions {
pub headings: bool,
pub notes: bool,
pub comments: bool,
pub hidden_slides: bool,
pub hidden_shapes: bool,
pub furniture: bool,
pub images: bool,
}Expand description
What goes into the Markdown.
Fields§
§headings: boolA ## Title (or ## Slide N) heading per slide.
notes: boolSpeaker notes as a > **Notes:** block quote after the slide.
comments: boolComments as > **Comment (Author):** block quotes after the slide.
Include slides marked hidden.
Include shapes marked hidden.
furniture: boolInclude date, footer, header and slide number placeholders.
images: boolPictures as  images.
Trait Implementations§
Source§impl Clone for MarkdownOptions
impl Clone for MarkdownOptions
Source§fn clone(&self) -> MarkdownOptions
fn clone(&self) -> MarkdownOptions
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 MarkdownOptions
impl Debug for MarkdownOptions
Source§impl Default for MarkdownOptions
impl Default for MarkdownOptions
impl Eq for MarkdownOptions
Source§impl PartialEq for MarkdownOptions
impl PartialEq for MarkdownOptions
impl StructuralPartialEq for MarkdownOptions
Auto Trait Implementations§
impl Freeze for MarkdownOptions
impl RefUnwindSafe for MarkdownOptions
impl Send for MarkdownOptions
impl Sync for MarkdownOptions
impl Unpin for MarkdownOptions
impl UnsafeUnpin for MarkdownOptions
impl UnwindSafe for MarkdownOptions
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