pub struct Paragraph {
pub text: String,
}
Expand description
A markdown paragraph.
A paragraph is a continuous text that is visually separated from its surrounding markdown elements.
Fields§
§text: String
The text inside the paragraph.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Paragraph
impl RefUnwindSafe for Paragraph
impl Send for Paragraph
impl Sync for Paragraph
impl Unpin 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