pub enum SectionLine {
Label {
span: Span,
name: String,
},
Data {
span: Span,
width: SectionDataWidth,
values: Vec<SectionValue>,
},
}Variants§
Trait Implementations§
Source§impl Clone for SectionLine
impl Clone for SectionLine
Source§fn clone(&self) -> SectionLine
fn clone(&self) -> SectionLine
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SectionLine
impl Debug for SectionLine
Source§impl PartialEq for SectionLine
impl PartialEq for SectionLine
Source§fn eq(&self, other: &SectionLine) -> bool
fn eq(&self, other: &SectionLine) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SectionLine
Auto Trait Implementations§
impl Freeze for SectionLine
impl RefUnwindSafe for SectionLine
impl Send for SectionLine
impl Sync for SectionLine
impl Unpin for SectionLine
impl UnsafeUnpin for SectionLine
impl UnwindSafe for SectionLine
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