Enum core::fmt::rt::Alignment[src]
pub enum Alignment {
AlignLeft,
AlignRight,
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. |
AlignUnknown | No alignment was requested. |