pub enum Align {
Start,
Center,
End,
Justify,
}Variants§
Start
Center
End
Justify
Text only (TextStyle::align): word gaps stretch so every line but
the last of a paragraph is flush with both edges. Meaningless for
block/container alignment (Row/Column/TableColumn), which
treats it the same as Start.
Trait Implementations§
impl Copy for Align
impl Eq for Align
impl StructuralPartialEq for Align
Auto Trait Implementations§
impl Freeze for Align
impl RefUnwindSafe for Align
impl Send for Align
impl Sync for Align
impl Unpin for Align
impl UnsafeUnpin for Align
impl UnwindSafe for Align
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