pub enum TypeDataParseError {
MalformedString,
NoArguments,
MissingArgument,
UTF8Error(Utf8Error),
NameParseError(NameParseError),
AddrParseError(AddrParseError),
ParseIntError(ParseIntError),
FromHexError(FromHexError),
}Variants§
MalformedString
NoArguments
MissingArgument
UTF8Error(Utf8Error)
NameParseError(NameParseError)
AddrParseError(AddrParseError)
ParseIntError(ParseIntError)
FromHexError(FromHexError)
Trait Implementations§
Source§impl Debug for TypeDataParseError
impl Debug for TypeDataParseError
Source§impl Display for TypeDataParseError
impl Display for TypeDataParseError
Source§impl Error for TypeDataParseError
impl Error for TypeDataParseError
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<AddrParseError> for TypeDataParseError
impl From<AddrParseError> for TypeDataParseError
Source§fn from(source: AddrParseError) -> Self
fn from(source: AddrParseError) -> Self
Converts to this type from the input type.
Source§impl From<FromHexError> for TypeDataParseError
impl From<FromHexError> for TypeDataParseError
Source§fn from(source: FromHexError) -> Self
fn from(source: FromHexError) -> Self
Converts to this type from the input type.
Source§impl From<NameParseError> for TypeDataParseError
impl From<NameParseError> for TypeDataParseError
Source§fn from(source: NameParseError) -> Self
fn from(source: NameParseError) -> Self
Converts to this type from the input type.
Source§impl From<ParseIntError> for TypeDataParseError
impl From<ParseIntError> for TypeDataParseError
Source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TypeDataParseError
impl RefUnwindSafe for TypeDataParseError
impl Send for TypeDataParseError
impl Sync for TypeDataParseError
impl Unpin for TypeDataParseError
impl UnwindSafe for TypeDataParseError
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