pub enum HAlign {
Left,
Right,
Center,
Fill,
}
Expand description
Horizontal alignments for a cell.
Variants§
Left
Left align contents of the cell. (default)
Right
Right align contents of the cell
Center
Center align contents of the cell
Fill
Fills the entire width of the cell with repeating the content.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HAlign
impl RefUnwindSafe for HAlign
impl Send for HAlign
impl Sync for HAlign
impl Unpin for HAlign
impl UnwindSafe for HAlign
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