pub enum ColumnAlignment {
Left,
Center,
Right,
}
Expand description
Alignment options for table columns.
Variants§
Left
Align the column to the left.
Center
Align the column to the center.
Right
Align the column to the right.
Trait Implementations§
Source§impl Clone for ColumnAlignment
impl Clone for ColumnAlignment
Source§fn clone(&self) -> ColumnAlignment
fn clone(&self) -> ColumnAlignment
Returns a copy 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 ColumnAlignment
impl Debug for ColumnAlignment
Source§impl PartialEq for ColumnAlignment
impl PartialEq for ColumnAlignment
impl Copy for ColumnAlignment
impl StructuralPartialEq for ColumnAlignment
Auto Trait Implementations§
impl Freeze for ColumnAlignment
impl RefUnwindSafe for ColumnAlignment
impl Send for ColumnAlignment
impl Sync for ColumnAlignment
impl Unpin for ColumnAlignment
impl UnwindSafe for ColumnAlignment
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