Enum fmt_macros::Alignment [] [src]

pub enum Alignment {
    AlignLeft,
    AlignRight,
    AlignCenter,
    AlignUnknown,
}
🔬 This is a nightly-only experimental API. (rustc_private)

Enum of alignments which are supported.

Variants

🔬 This is a nightly-only experimental API. (rustc_private)

The value will be aligned to the left.

🔬 This is a nightly-only experimental API. (rustc_private)

The value will be aligned to the right.

🔬 This is a nightly-only experimental API. (rustc_private)

The value will be aligned in the center.

🔬 This is a nightly-only experimental API. (rustc_private)

The value will take on a default alignment.

Trait Implementations

impl Copy for Alignment
[src]

impl Clone for Alignment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Alignment
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.