pub trait ReservedValue: Eq {
    fn reserved_value() -> Self;
}
Expand description

Types that have a reserved value which can’t be created any other way.

Required Methods§

Create an instance of the reserved value.

Implementors§