pub struct TextOptions {
pub furniture: bool,
pub hidden_shapes: bool,
pub hidden_slides: bool,
pub notes: bool,
pub alt_text: bool,
pub comments: bool,
pub charts: bool,
pub diagrams: bool,
pub cell_separator: String,
}Expand description
What goes into extracted text.
Fields§
§furniture: boolInclude date, footer, header and slide number placeholders.
Include shapes marked hidden.
Include slides marked hidden (show="0").
notes: boolInclude speaker notes after each slide’s text.
alt_text: boolInclude the alternative text (cNvPr/@descr) of shapes that have no text of their own.
comments: boolInclude the slide’s comments after its text and notes.
charts: boolInclude chart titles, series names, categories and values, as table rows.
diagrams: boolInclude the text of diagrams (SmartArt), one node per line.
cell_separator: StringSeparator between table cells of one row.
Trait Implementations§
Source§impl Clone for TextOptions
impl Clone for TextOptions
Source§fn clone(&self) -> TextOptions
fn clone(&self) -> TextOptions
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 TextOptions
impl Debug for TextOptions
Source§impl Default for TextOptions
impl Default for TextOptions
impl Eq for TextOptions
Source§impl PartialEq for TextOptions
impl PartialEq for TextOptions
impl StructuralPartialEq for TextOptions
Auto Trait Implementations§
impl Freeze for TextOptions
impl RefUnwindSafe for TextOptions
impl Send for TextOptions
impl Sync for TextOptions
impl Unpin for TextOptions
impl UnsafeUnpin for TextOptions
impl UnwindSafe for TextOptions
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