Same as Option, except that the order of the variants is reversed. This is used as the return type of some libfuncs for efficiency reasons.

Signature

pub enum OptionRev {
    None,
    Some: T,
}

Variants

None

Signature

None

Some

Signature

Some: T