pub trait StrictEnumwhere
    Self: StrictSum + Copy + TryFrom<u8, Error = VariantError<u8>>,
    u8: From<Self>,
{ fn from_variant_name(
        name: &FieldName
    ) -> Result<Self, VariantError<&FieldName>> { ... } fn strict_type_info() -> TypeInfo<Self> { ... } }

Provided Methods§

Implementors§