pub enum TableRowKind {
Header,
Delimiter,
Body,
}Expand description
Which row of a TableBlock a buffer row is.
Variants§
Header
First row of the block (column names).
Delimiter
Second row (| --- | --- |).
Body
Any data row below the delimiter.
Trait Implementations§
Source§impl Clone for TableRowKind
impl Clone for TableRowKind
Source§fn clone(&self) -> TableRowKind
fn clone(&self) -> TableRowKind
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 moreimpl Copy for TableRowKind
Source§impl Debug for TableRowKind
impl Debug for TableRowKind
impl Eq for TableRowKind
Source§impl PartialEq for TableRowKind
impl PartialEq for TableRowKind
Source§fn eq(&self, other: &TableRowKind) -> bool
fn eq(&self, other: &TableRowKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TableRowKind
Auto Trait Implementations§
impl Freeze for TableRowKind
impl RefUnwindSafe for TableRowKind
impl Send for TableRowKind
impl Sync for TableRowKind
impl Unpin for TableRowKind
impl UnsafeUnpin for TableRowKind
impl UnwindSafe for TableRowKind
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