pub enum TextTabAlignType {
Left,
Center,
Right,
Decimal,
}Expand description
This simple type specifies the text tab alignment types.
Variants§
Left
The text at this tab stop is left aligned.
Center
The text at this tab stop is center aligned.
Right
The text at this tab stop is right aligned.
Decimal
At this tab stop, the decimals are lined up. From a user’s point of view, the text here behaves as right aligned until the decimal, and then as left aligned after the decimal.
Trait Implementations§
Source§impl Clone for TextTabAlignType
impl Clone for TextTabAlignType
Source§fn clone(&self) -> TextTabAlignType
fn clone(&self) -> TextTabAlignType
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 TextTabAlignType
Source§impl Debug for TextTabAlignType
impl Debug for TextTabAlignType
Source§impl FromStr for TextTabAlignType
impl FromStr for TextTabAlignType
Source§impl PartialEq for TextTabAlignType
impl PartialEq for TextTabAlignType
Source§fn eq(&self, other: &TextTabAlignType) -> bool
fn eq(&self, other: &TextTabAlignType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TextTabAlignType
Auto Trait Implementations§
impl Freeze for TextTabAlignType
impl RefUnwindSafe for TextTabAlignType
impl Send for TextTabAlignType
impl Sync for TextTabAlignType
impl Unpin for TextTabAlignType
impl UnsafeUnpin for TextTabAlignType
impl UnwindSafe for TextTabAlignType
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