pub enum InterfaceError {
ElementBeginDigit,
ElementBeginDot,
EndDot,
Empty,
Elements,
ExceedMaximum(usize),
InvalidChar(u8),
}
Expand description
An enum representing all errors, which can occur during the handling of a Interface
.
Variants§
Trait Implementations§
Source§impl Debug for InterfaceError
impl Debug for InterfaceError
Source§impl Display for InterfaceError
impl Display for InterfaceError
Source§impl Error for InterfaceError
impl Error for InterfaceError
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<InterfaceError> for DecodeError
impl From<InterfaceError> for DecodeError
Source§fn from(source: InterfaceError) -> Self
fn from(source: InterfaceError) -> Self
Converts to this type from the input type.
Source§impl From<InterfaceError> for FieldsError
impl From<InterfaceError> for FieldsError
Source§fn from(source: InterfaceError) -> Self
fn from(source: InterfaceError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InterfaceError
impl PartialEq for InterfaceError
impl Eq for InterfaceError
impl StructuralPartialEq for InterfaceError
Auto Trait Implementations§
impl Freeze for InterfaceError
impl RefUnwindSafe for InterfaceError
impl Send for InterfaceError
impl Sync for InterfaceError
impl Unpin for InterfaceError
impl UnwindSafe for InterfaceError
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