pub struct InvalidCommandParserSpec(/* private fields */);Expand description
Raised by Commander if there was something wrong with the parsers given to it. Perhaps
the parsers were incorrectly specified or conflicted amongst themselves.
Trait Implementations§
Source§impl Clone for InvalidCommandParserSpec
impl Clone for InvalidCommandParserSpec
Source§fn clone(&self) -> InvalidCommandParserSpec
fn clone(&self) -> InvalidCommandParserSpec
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InvalidCommandParserSpec
impl Debug for InvalidCommandParserSpec
Source§impl Display for InvalidCommandParserSpec
impl Display for InvalidCommandParserSpec
Source§impl Error for InvalidCommandParserSpec
impl Error for InvalidCommandParserSpec
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 PartialEq for InvalidCommandParserSpec
impl PartialEq for InvalidCommandParserSpec
impl Eq for InvalidCommandParserSpec
impl StructuralPartialEq for InvalidCommandParserSpec
Auto Trait Implementations§
impl Freeze for InvalidCommandParserSpec
impl RefUnwindSafe for InvalidCommandParserSpec
impl Send for InvalidCommandParserSpec
impl Sync for InvalidCommandParserSpec
impl Unpin for InvalidCommandParserSpec
impl UnwindSafe for InvalidCommandParserSpec
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