Struct humansize::file_size_opts::FileSizeOpts[][src]

pub struct FileSizeOpts {
    pub divider: Kilo,
    pub units: Kilo,
    pub decimal_places: usize,
    pub decimal_zeroes: usize,
    pub fixed_at: FixedAt,
    pub long_units: bool,
    pub space: bool,
    pub suffix: &'static str,
    pub allow_negative: bool,
}

Holds the options for the file_size method.

Fields

The scale (binary/decimal) to divide against.

The unit set to display.

The amount of decimal places to display if the decimal part is non-zero.

The amount of zeroes to display if the decimal part is zero.

Whether to force a certain representation and if so, which one.

Whether to use the full suffix or its abbreveation.

Whether to place a space between value and units.

An optional suffix which will be appended after the unit.

Whether to allow negative numbers as input. If False, negative values will return an error.

Trait Implementations

impl Debug for FileSizeOpts
[src]

Formats the value using the given formatter. Read more

impl AsRef<FileSizeOpts> for FileSizeOpts
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for FileSizeOpts

impl Sync for FileSizeOpts