pub struct MarkdownInfo {
pub sections: Vec<String>,
pub tables: Vec<String>,
pub charts: Vec<String>,
pub code_blocks: Vec<String>,
pub formatting_style: String,
pub toc_included: bool,
pub metadata: HashMap<String, String>,
pub template_used: String,
pub export_formats: Vec<String>,
pub markdown_content: String,
}
Fields§
§sections: Vec<String>
§tables: Vec<String>
§charts: Vec<String>
§code_blocks: Vec<String>
§formatting_style: String
§toc_included: bool
§metadata: HashMap<String, String>
§template_used: String
§export_formats: Vec<String>
§markdown_content: String
Trait Implementations§
Source§impl Clone for MarkdownInfo
impl Clone for MarkdownInfo
Source§fn clone(&self) -> MarkdownInfo
fn clone(&self) -> MarkdownInfo
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 MarkdownInfo
impl Debug for MarkdownInfo
Source§impl PartialEq for MarkdownInfo
impl PartialEq for MarkdownInfo
Source§impl Serialize for MarkdownInfo
impl Serialize for MarkdownInfo
impl StructuralPartialEq for MarkdownInfo
Auto Trait Implementations§
impl Freeze for MarkdownInfo
impl RefUnwindSafe for MarkdownInfo
impl Send for MarkdownInfo
impl Sync for MarkdownInfo
impl Unpin for MarkdownInfo
impl UnwindSafe for MarkdownInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more