#[non_exhaustive]
pub enum Style {
    Default,
    Abbreviated,
    AbbreviatedLowercase,
    Full,
    FullLowercase,
}
Expand description

An enumeration of supported styles to be used when formatting/printing a Size type, specifying how the unit should be spelled out.

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.

Default

The default “smart” style, currently equal to Style::FullLowercase when the final unit is in bytes or Style::Abbreviated otherwise, e.g. “1024 bytes” and “1.29 GiB”

Abbreviated

Abbreviated style, e.g. “1024 KB” and “1.29 GiB”

AbbreviatedLowercase

Abbreviated, lowercase style, e.g. “1024 kb” and “1.29 gib”

Full

Full unit name style, e.g. “1024 Kilobytes” and “1.29 Gibibytes”

FullLowercase

Full, lowercase unit name style, e.g. “1024 kilobytes” and “1.29 gibibytes”

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.