Enum regex_automata::util::wire::DeserializeErrorKind
source · enum DeserializeErrorKind {
Generic {
msg: &'static str,
},
BufferTooSmall {
what: &'static str,
},
InvalidUsize {
what: &'static str,
},
VersionMismatch {
expected: u32,
found: u32,
},
EndianMismatch {
expected: u32,
found: u32,
},
AlignmentMismatch {
alignment: usize,
address: usize,
},
LabelMismatch {
expected: &'static str,
},
ArithmeticOverflow {
what: &'static str,
},
PatternID {
err: PatternIDError,
what: &'static str,
},
StateID {
err: StateIDError,
what: &'static str,
},
}
Variants§
Generic
BufferTooSmall
InvalidUsize
VersionMismatch
EndianMismatch
AlignmentMismatch
LabelMismatch
ArithmeticOverflow
PatternID
StateID
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DeserializeErrorKind
impl RefUnwindSafe for DeserializeErrorKind
impl Send for DeserializeErrorKind
impl Sync for DeserializeErrorKind
impl Unpin for DeserializeErrorKind
impl UnwindSafe for DeserializeErrorKind
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