pub enum ColumnAlignment {
Left,
Center,
Right,
}
Expand description
Represents a column in a matrix or array environment.
Variants§
Left
Content in the column is left-aligned.
Center
Content in the column is center-aligned.
Right
Content in the column is right-aligned.
Trait Implementations§
Source§impl Clone for ColumnAlignment
impl Clone for ColumnAlignment
Source§fn clone(&self) -> ColumnAlignment
fn clone(&self) -> ColumnAlignment
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 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