pub enum EnumMeta {
SerializeAll {
kw: serialize_all,
case_style: CaseStyle,
},
AsciiCaseInsensitive(ascii_case_insensitive),
Crate {
kw: Crate,
crate_module_path: Path,
},
UsePhf(use_phf),
Prefix {
kw: prefix,
prefix: LitStr,
},
Suffix {
kw: suffix,
suffix: LitStr,
},
ParseErrTy {
kw: parse_err_ty,
path: Path,
},
ParseErrFn {
kw: parse_err_fn,
path: Path,
},
ConstIntoStr(const_into_str),
}Variants§
SerializeAll
AsciiCaseInsensitive(ascii_case_insensitive)
Crate
UsePhf(use_phf)
Prefix
Suffix
ParseErrTy
ParseErrFn
ConstIntoStr(const_into_str)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EnumMeta
impl RefUnwindSafe for EnumMeta
impl !Send for EnumMeta
impl !Sync for EnumMeta
impl Unpin for EnumMeta
impl UnwindSafe for EnumMeta
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more