pub struct MarkdownLine {
pub segments: Vec<MarkdownSegment>,
}
Expand description
A rendered line composed of styled segments.
Fields§
§segments: Vec<MarkdownSegment>
Trait Implementations§
Source§impl Clone for MarkdownLine
impl Clone for MarkdownLine
Source§fn clone(&self) -> MarkdownLine
fn clone(&self) -> MarkdownLine
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 moreSource§impl Debug for MarkdownLine
impl Debug for MarkdownLine
Source§impl Default for MarkdownLine
impl Default for MarkdownLine
Source§fn default() -> MarkdownLine
fn default() -> MarkdownLine
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MarkdownLine
impl RefUnwindSafe for MarkdownLine
impl Send for MarkdownLine
impl Sync for MarkdownLine
impl Unpin for MarkdownLine
impl UnwindSafe for MarkdownLine
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