pub enum AlignType {
AlignLeft,
AlignRight,
AlignCenter,
AlignTop,
AlignBottom,
}Expand description
Text alignment.
Variants§
AlignLeft
Left-aligned text.
AlignRight
Right-aligned text.
AlignCenter
Center-aligned text.
AlignTop
Top-aligned text.
AlignBottom
Bottom-aligned text.
Trait Implementations§
impl Copy for AlignType
impl Eq for AlignType
impl StructuralPartialEq for AlignType
Auto Trait Implementations§
impl Freeze for AlignType
impl RefUnwindSafe for AlignType
impl Send for AlignType
impl Sync for AlignType
impl Unpin for AlignType
impl UnsafeUnpin for AlignType
impl UnwindSafe for AlignType
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