pub enum ParsingErrorKind {
Consuming {
index: u32,
},
Processing {
message: &'static str,
},
}
Variants§
Trait Implementations§
Source§impl Clone for ParsingErrorKind
impl Clone for ParsingErrorKind
Source§fn clone(&self) -> ParsingErrorKind
fn clone(&self) -> ParsingErrorKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ParsingErrorKind
impl Debug for ParsingErrorKind
Source§impl From<&'static str> for ParsingErrorKind
impl From<&'static str> for ParsingErrorKind
Source§impl From<u32> for ParsingErrorKind
impl From<u32> for ParsingErrorKind
Source§impl PartialEq for ParsingErrorKind
impl PartialEq for ParsingErrorKind
impl Copy for ParsingErrorKind
impl Eq for ParsingErrorKind
impl StructuralPartialEq for ParsingErrorKind
Auto Trait Implementations§
impl Freeze for ParsingErrorKind
impl RefUnwindSafe for ParsingErrorKind
impl Send for ParsingErrorKind
impl Sync for ParsingErrorKind
impl Unpin for ParsingErrorKind
impl UnwindSafe for ParsingErrorKind
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