pub enum ParseArgumentsError {
Help,
CreateRangeError(CreateRangeError),
ParseRangeError(ParseRangeError),
}Variants§
Trait Implementations§
Source§impl Debug for ParseArgumentsError
impl Debug for ParseArgumentsError
Source§impl From<CreateRangeError> for ParseArgumentsError
impl From<CreateRangeError> for ParseArgumentsError
Source§fn from(error: CreateRangeError) -> Self
fn from(error: CreateRangeError) -> Self
Converts to this type from the input type.
Source§impl From<ParseRangeError> for ParseArgumentsError
impl From<ParseRangeError> for ParseArgumentsError
Source§fn from(error: ParseRangeError) -> Self
fn from(error: ParseRangeError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParseArgumentsError
impl PartialEq for ParseArgumentsError
impl StructuralPartialEq for ParseArgumentsError
Auto Trait Implementations§
impl Freeze for ParseArgumentsError
impl RefUnwindSafe for ParseArgumentsError
impl Send for ParseArgumentsError
impl Sync for ParseArgumentsError
impl Unpin for ParseArgumentsError
impl UnwindSafe for ParseArgumentsError
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