Enum fmt_macros::AlignmentUnstable [-] [+] [src]

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

Enum of alignments which are supported.

Variants

AlignLeft

The value will be aligned to the left.

AlignRight

The value will be aligned to the right.

AlignCenter

The value will be aligned in the center.

AlignUnknown

The value will take on a default alignment.

Trait Implementations

Derived Implementations

impl PartialEq for Alignment

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

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

impl Clone for Alignment

fn clone(&self) -> Alignment

fn clone_from(&mut self, source: &Self)

impl Copy for Alignment