pub trait Variants<V> {
    fn variants() -> Iter<'static, V>
    where
        V: Sized
; }
Expand description

Iter defines types that have variants that can be iterated.

Required Methods

Implementors