pub struct RenderOptions {
pub include_document_properties: bool,
pub use_first_row_as_header: bool,
pub include_headers_footers: bool,
pub include_formulas: bool,
pub markdown_profile: MarkdownProfile,
}Expand description
Options controlling markdown rendering behavior.
Fields§
§include_document_properties: boolInclude document-level properties as a header block.
use_first_row_as_header: boolUse the first data row as the table header instead of synthetic Col1/Col2 names.
Include DOCX header/footer sections in the output.
include_formulas: boolInclude XLSX formula footnotes in the output.
markdown_profile: MarkdownProfileMarkdown profile controlling compact vs human-oriented formatting.
Trait Implementations§
Source§impl Clone for RenderOptions
impl Clone for RenderOptions
Source§fn clone(&self) -> RenderOptions
fn clone(&self) -> RenderOptions
Returns a duplicate of the value. Read more
1.0.0 · 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 RenderOptions
impl Debug for RenderOptions
Source§impl Default for RenderOptions
impl Default for RenderOptions
impl Copy for RenderOptions
Auto Trait Implementations§
impl Freeze for RenderOptions
impl RefUnwindSafe for RenderOptions
impl Send for RenderOptions
impl Sync for RenderOptions
impl Unpin for RenderOptions
impl UnsafeUnpin for RenderOptions
impl UnwindSafe for RenderOptions
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