Represents the result of matching a Nullable value. Used to safely handle both null and non-null cases when using match_nullable on a Nullable.

Signature

pub enum FromNullableResult {
    Null,
    NotNull: Box,
}

Variants

Null

Represents a null value

Signature

Null

NotNull

The boxed value when not null

Signature

NotNull: Box