pub enum RowSeparation {
None,
Rule,
Blank,
}Expand description
What separates consecutive rows of a Table.
Variants§
None
Rows print on consecutive lines.
Rule
A horizontal rule between each pair of rows.
Blank
A blank line between each pair of rows.
Trait Implementations§
Source§impl Clone for RowSeparation
impl Clone for RowSeparation
impl Copy for RowSeparation
Source§impl Debug for RowSeparation
impl Debug for RowSeparation
Source§impl Default for RowSeparation
impl Default for RowSeparation
impl Eq for RowSeparation
Source§impl PartialEq for RowSeparation
impl PartialEq for RowSeparation
impl StructuralPartialEq for RowSeparation
Auto Trait Implementations§
impl Freeze for RowSeparation
impl RefUnwindSafe for RowSeparation
impl Send for RowSeparation
impl Sync for RowSeparation
impl Unpin for RowSeparation
impl UnsafeUnpin for RowSeparation
impl UnwindSafe for RowSeparation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more