pub enum BorderVariant {
None,
Ascii,
AsciiGrid,
Unicode,
Markdown,
}Expand description
Border rendering variant for tables
Variants§
None
No borders, space-separated columns
Ascii
ASCII borders with pipes: | + -
AsciiGrid
Full ASCII grid with row separators: +—+
Unicode
Unicode box drawing: ┌─┬─┐ ├─┼─┤ └─┴─┘
Markdown
Markdown table format: | col | col |
Trait Implementations§
Source§impl Clone for BorderVariant
impl Clone for BorderVariant
Source§fn clone(&self) -> BorderVariant
fn clone(&self) -> BorderVariant
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 BorderVariant
impl Debug for BorderVariant
Source§impl Default for BorderVariant
impl Default for BorderVariant
Source§fn default() -> BorderVariant
fn default() -> BorderVariant
Returns the “default value” for a type. Read more
Source§impl PartialEq for BorderVariant
impl PartialEq for BorderVariant
impl Copy for BorderVariant
impl Eq for BorderVariant
impl StructuralPartialEq for BorderVariant
Auto Trait Implementations§
impl Freeze for BorderVariant
impl RefUnwindSafe for BorderVariant
impl Send for BorderVariant
impl Sync for BorderVariant
impl Unpin for BorderVariant
impl UnwindSafe for BorderVariant
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