pub enum ListCliError {
Runtime(RuntimeError),
Serialize(Error),
}Variants§
Runtime(RuntimeError)
Serialize(Error)
Trait Implementations§
Source§impl Debug for ListCliError
impl Debug for ListCliError
Source§impl Display for ListCliError
impl Display for ListCliError
Source§impl Error for ListCliError
impl Error for ListCliError
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<Error> for ListCliError
impl From<Error> for ListCliError
Source§impl From<RuntimeError> for ListCliError
impl From<RuntimeError> for ListCliError
Source§fn from(error: RuntimeError) -> Self
fn from(error: RuntimeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for ListCliError
impl !UnwindSafe for ListCliError
impl Freeze for ListCliError
impl Send for ListCliError
impl Sync for ListCliError
impl Unpin for ListCliError
impl UnsafeUnpin for ListCliError
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