[][src]Enum oox::shared::drawingml::simpletypes::TextTabAlignType

pub enum TextTabAlignType {
    Left,
    Center,
    Right,
    Decimal,
}

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

impl Clone for TextTabAlignType[src]

impl Copy for TextTabAlignType[src]

impl Debug for TextTabAlignType[src]

impl FromStr for TextTabAlignType[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl PartialEq<TextTabAlignType> for TextTabAlignType[src]

impl StructuralPartialEq for TextTabAlignType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.