Enum core::fmt::Alignment [] [src]

pub enum Alignment {
    Left,
    Right,
    Center,
    Unknown,
}
Unstable (fmt_flags_align #27726)

Possible alignments returned by Formatter::align

Variants

Left
Unstable (fmt_flags_align #27726)

Indication that contents should be left-aligned.

Right
Unstable (fmt_flags_align #27726)

Indication that contents should be right-aligned.

Center
Unstable (fmt_flags_align #27726)

Indication that contents should be center-aligned.

Unknown
Unstable (fmt_flags_align #27726)

No alignment was requested.

Trait Implementations

Derived Implementations

impl Debug for Alignment

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Unstable (fmt_flags_align #27726)