Enum time::format_description::modifier::Padding
source · #[non_exhaustive]
pub enum Padding {
Space,
Zero,
None,
}
Expand description
Type of padding to ensure a minimum width.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Space
A space character (
) should be used as padding.
Zero
A zero character (0
) should be used as padding.
None
There is no padding. This can result in a width below the otherwise minimum number of characters.
Trait Implementations§
source§impl Default for Padding
impl Default for Padding
Creates a modifier that indicates the value is padded with zeroes.