Enum std::fmt::rt::AlignmentExperimental [-]  [+] [src]

pub enum Alignment {
    AlignLeft,
    AlignRight,
    AlignCenter,
    AlignUnknown,
}

Possible alignments that can be requested as part of a formatting directive.

Variants

AlignLeft

Indication that contents should be left-aligned.

AlignRight

Indication that contents should be right-aligned.

AlignCenter

Indication that contents should be center-aligned.

AlignUnknown

No alignment was requested.

Trait Implementations

Derived Implementations

impl PartialEq<Alignment> for Alignment

fn eq(&self, __arg_0: &Alignment) -> bool

fn ne(&self, __arg_0: &Alignment) -> bool

fn ne(&self, &Alignment) -> bool

impl Copy for Alignment