pub enum NumberOrPercentage {
    Number {
        value: f32,
    },
    Percentage {
        unit_value: f32,
    },
}
Expand description

Either a number or a percentage.

Variants§

§

Number

Fields

§value: f32

The numeric value parsed, as a float.

<number>.

§

Percentage

Fields

§unit_value: f32

The value as a float, divided by 100 so that the nominal range is 0.0 to 1.0.

<percentage>

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 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.