pub struct ExtractResult {
pub code_blocks: Vec<CodeBlock>,
pub directives: Vec<DirectiveLine>,
pub has_fenced_blocks: bool,
}Expand description
Result of extracting blocks from Markdown
Fields§
§code_blocks: Vec<CodeBlock>§directives: Vec<DirectiveLine>§has_fenced_blocks: boolTrue when at least one fenced lumen/lm block was found.
Trait Implementations§
Source§impl Clone for ExtractResult
impl Clone for ExtractResult
Source§fn clone(&self) -> ExtractResult
fn clone(&self) -> ExtractResult
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 moreAuto Trait Implementations§
impl Freeze for ExtractResult
impl RefUnwindSafe for ExtractResult
impl Send for ExtractResult
impl Sync for ExtractResult
impl Unpin for ExtractResult
impl UnwindSafe for ExtractResult
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