Enum clap_interactive::error::ClapIntError
source · pub enum ClapIntError {
Generic(String),
Inquire(InquireError),
Clap(Error),
}Variants
Generic(String)
Inquire(InquireError)
Clap(Error)
Trait Implementations
sourceimpl Debug for ClapIntError
impl Debug for ClapIntError
sourceimpl Display for ClapIntError
impl Display for ClapIntError
sourceimpl Error for ClapIntError
impl Error for ClapIntError
sourcefn 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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<Error<RichFormatter>> for ClapIntError
impl From<Error<RichFormatter>> for ClapIntError
sourceimpl From<InquireError> for ClapIntError
impl From<InquireError> for ClapIntError
sourcefn from(source: InquireError) -> Self
fn from(source: InquireError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for ClapIntError
impl Send for ClapIntError
impl Sync for ClapIntError
impl Unpin for ClapIntError
impl !UnwindSafe for ClapIntError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more