Type Alias PrefixedOptional

Source
pub type PrefixedOptional<T> = Option<T>;

Aliased Type§

pub enum PrefixedOptional<T> {
    None,
    Some(T),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(T)

Some value of type T.