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
AlignLeft
🔬 This is a nightly-only experimental API. (
rustc_private
)The value will be aligned to the left.
AlignRight
🔬 This is a nightly-only experimental API. (
rustc_private
)The value will be aligned to the right.
AlignCenter
🔬 This is a nightly-only experimental API. (
rustc_private
)The value will be aligned in the center.
AlignUnknown
🔬 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]
fn clone(&self) -> Alignment
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more