Type Alias lexical_util::format::OptionU8

source ·
pub type OptionU8 = Option<NonZeroU8>;
Expand description

Type with the exact same size as a u8.

Aliased Type§

enum OptionU8 {
    None,
    Some(NonZero<u8>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(NonZero<u8>)

Some value of type T.