Trait DefaultActiveValueNotSet

pub trait DefaultActiveValueNotSet {
    type Value;

    // Required method
    fn default_value(&self) -> Self::Value;
}
Expand description

Default value for types that’s not nullable

Required Associated Types§

type Value

The owned value type

Required Methods§

fn default_value(&self) -> Self::Value

Always NotSet

Implementors§