pub enum OptParseErrorKind {
HelpMessage,
VersionMessage,
InvalidOption,
MissingOption,
InvalidOptionArgument,
UnexpectedOptionArgument,
MissingOptionArgument,
UnexpectedArgument,
MissingArgument,
}Variants§
HelpMessage
VersionMessage
InvalidOption
MissingOption
InvalidOptionArgument
UnexpectedOptionArgument
MissingOptionArgument
UnexpectedArgument
MissingArgument
Trait Implementations§
Source§impl Clone for OptParseErrorKind
impl Clone for OptParseErrorKind
Source§fn clone(&self) -> OptParseErrorKind
fn clone(&self) -> OptParseErrorKind
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 OptParseErrorKind
impl Debug for OptParseErrorKind
Source§impl PartialEq for OptParseErrorKind
impl PartialEq for OptParseErrorKind
impl Eq for OptParseErrorKind
impl StructuralPartialEq for OptParseErrorKind
Auto Trait Implementations§
impl Freeze for OptParseErrorKind
impl RefUnwindSafe for OptParseErrorKind
impl Send for OptParseErrorKind
impl Sync for OptParseErrorKind
impl Unpin for OptParseErrorKind
impl UnwindSafe for OptParseErrorKind
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