pub struct Paragraph<'a> {
pub children: Vec<'a, Node<'a>>,
pub span: Span,
}Expand description
Paragraph node.
Fields§
§children: Vec<'a, Node<'a>>Inline children.
span: SpanSource span.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Paragraph<'a>
impl<'a> !RefUnwindSafe for Paragraph<'a>
impl<'a> !Send for Paragraph<'a>
impl<'a> !Sync for Paragraph<'a>
impl<'a> Unpin for Paragraph<'a>
impl<'a> UnsafeUnpin for Paragraph<'a>
impl<'a> !UnwindSafe for Paragraph<'a>
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