Type Alias lexical_write_float::options::OptionI32

source ·
pub type OptionI32 = Option<NonZeroI32>;
Expand description

Type with the exact same size as a i32.

Aliased Type§

enum OptionI32 {
    None,
    Some(NonZero<i32>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(NonZero<i32>)

Some value of type T.