pub enum ErrorError {
ElementBeginDigit,
ElementBeginDot,
EndDot,
Empty,
Elements,
ExceedMaximum(usize),
InvalidChar(u8),
}
Expand description
An enum representing all errors, which can occur during the handling of a Error
.
Variants§
Trait Implementations§
Source§impl Debug for ErrorError
impl Debug for ErrorError
Source§impl Display for ErrorError
impl Display for ErrorError
Source§impl Error for ErrorError
impl Error for ErrorError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<ErrorError> for DecodeError
impl From<ErrorError> for DecodeError
Source§fn from(source: ErrorError) -> Self
fn from(source: ErrorError) -> Self
Converts to this type from the input type.
Source§impl From<ErrorError> for FieldsError
impl From<ErrorError> for FieldsError
Source§fn from(source: ErrorError) -> Self
fn from(source: ErrorError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ErrorError
impl PartialEq for ErrorError
impl Eq for ErrorError
impl StructuralPartialEq for ErrorError
Auto Trait Implementations§
impl Freeze for ErrorError
impl RefUnwindSafe for ErrorError
impl Send for ErrorError
impl Sync for ErrorError
impl Unpin for ErrorError
impl UnwindSafe for ErrorError
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