Enum fuel_etk_cli::parse::FromHexError
source · pub enum FromHexError<E> {
Prefix,
Hex(E),
}Expand description
Errors that can occur while parsing hexadecimal.
Variants§
Trait Implementations§
source§impl<E: Debug> Debug for FromHexError<E>
impl<E: Debug> Debug for FromHexError<E>
source§impl<E> Display for FromHexError<E>where
E: Display,
impl<E> Display for FromHexError<E>where
E: Display,
source§impl<E> Error for FromHexError<E>where
E: 'static + Error,
impl<E> Error for FromHexError<E>where
E: 'static + Error,
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
Auto Trait Implementations§
impl<E> RefUnwindSafe for FromHexError<E>where
E: RefUnwindSafe,
impl<E> Send for FromHexError<E>where
E: Send,
impl<E> Sync for FromHexError<E>where
E: Sync,
impl<E> Unpin for FromHexError<E>where
E: Unpin,
impl<E> UnwindSafe for FromHexError<E>where
E: UnwindSafe,
Blanket Implementations§
source§impl<T> AsErrorSource for Twhere
T: Error + 'static,
impl<T> AsErrorSource for Twhere
T: Error + 'static,
source§fn as_error_source(&self) -> &(dyn Error + 'static)
fn as_error_source(&self) -> &(dyn Error + 'static)
For maximum effectiveness, this needs to be called as a method
to benefit from Rust’s automatic dereferencing of method
receivers.