pub enum CellAlignment {
Left,
Center,
Right,
Justify,
}Expand description
Cell alignment options
Variants§
Left
Left-aligned content
Center
Center-aligned content
Right
Right-aligned content
Justify
Justified content (for multi-line text)
Trait Implementations§
Source§impl Clone for CellAlignment
impl Clone for CellAlignment
Source§fn clone(&self) -> CellAlignment
fn clone(&self) -> CellAlignment
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 CellAlignment
Source§impl Debug for CellAlignment
impl Debug for CellAlignment
Source§impl Default for CellAlignment
impl Default for CellAlignment
Source§fn default() -> CellAlignment
fn default() -> CellAlignment
Returns the “default value” for a type. Read more
Source§impl PartialEq for CellAlignment
impl PartialEq for CellAlignment
impl StructuralPartialEq for CellAlignment
Auto Trait Implementations§
impl Freeze for CellAlignment
impl RefUnwindSafe for CellAlignment
impl Send for CellAlignment
impl Sync for CellAlignment
impl Unpin for CellAlignment
impl UnsafeUnpin for CellAlignment
impl UnwindSafe for CellAlignment
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