pub enum ParseOptionError {
Generic(ParseError),
UnknownFlag {
loc: Location,
name: String,
},
UnknownValue {
loc: Location,
name: String,
value: String,
},
}
Expand description
An error type returned by parse_options
.
Variants§
Generic(ParseError)
A generic ParseError.
UnknownFlag
An unknown flag was used, with the given name at the given location.
UnknownValue
An unknown value was used, with the given name at the given location.
Trait Implementations§
Source§impl From<ParseOptionError> for ParseError
impl From<ParseOptionError> for ParseError
Source§fn from(err: ParseOptionError) -> Self
fn from(err: ParseOptionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParseOptionError
impl RefUnwindSafe for ParseOptionError
impl Send for ParseOptionError
impl Sync for ParseOptionError
impl Unpin for ParseOptionError
impl UnwindSafe for ParseOptionError
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