pub struct Paragraph {
pub meta: NodeMeta,
pub children: Vec<Inline>,
}Expand description
A paragraph: a run of inline content. Source: any plain text line(s).
Fields§
§meta: NodeMetaNode metadata (source span).
children: Vec<Inline>The paragraph’s inline content.
Implementations§
Trait Implementations§
impl Eq for Paragraph
impl StructuralPartialEq for Paragraph
Auto Trait Implementations§
impl Freeze for Paragraph
impl RefUnwindSafe for Paragraph
impl Send for Paragraph
impl Sync for Paragraph
impl Unpin for Paragraph
impl UnsafeUnpin for Paragraph
impl UnwindSafe for Paragraph
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