pub struct ComposedMarkdown {
pub src: CowStr,
pub children: Vec<Child>,
}
Fields§
§src: CowStr
§children: Vec<Child>
Trait Implementations§
Source§impl From<ComposedMarkdown> for Vec<Block>
impl From<ComposedMarkdown> for Vec<Block>
Source§fn from(composed: ComposedMarkdown) -> Self
fn from(composed: ComposedMarkdown) -> Self
Converts to this type from the input type.
Source§impl From<Vec<ElementInfo>> for ComposedMarkdown
impl From<Vec<ElementInfo>> for ComposedMarkdown
Source§fn from(value: Vec<ElementInfo>) -> Self
fn from(value: Vec<ElementInfo>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ComposedMarkdown
impl RefUnwindSafe for ComposedMarkdown
impl Send for ComposedMarkdown
impl Sync for ComposedMarkdown
impl Unpin for ComposedMarkdown
impl UnwindSafe for ComposedMarkdown
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