Struct grep_cli::ParseSizeError
source · pub struct ParseSizeError { /* private fields */ }
Expand description
An error that occurs when parsing a human readable size description.
This error provides an end user friendly message describing why the description couldn’t be parsed and what the expected format is.
Trait Implementations§
source§impl Clone for ParseSizeError
impl Clone for ParseSizeError
source§fn clone(&self) -> ParseSizeError
fn clone(&self) -> ParseSizeError
Returns a copy 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 ParseSizeError
impl Debug for ParseSizeError
source§impl Display for ParseSizeError
impl Display for ParseSizeError
source§impl Error for ParseSizeError
impl Error for ParseSizeError
1.30.0 · source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<ParseSizeError> for Error
impl From<ParseSizeError> for Error
source§fn from(size_err: ParseSizeError) -> Error
fn from(size_err: ParseSizeError) -> Error
Converts to this type from the input type.
source§impl PartialEq<ParseSizeError> for ParseSizeError
impl PartialEq<ParseSizeError> for ParseSizeError
source§fn eq(&self, other: &ParseSizeError) -> bool
fn eq(&self, other: &ParseSizeError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ParseSizeError
impl StructuralEq for ParseSizeError
impl StructuralPartialEq for ParseSizeError
Auto Trait Implementations§
impl RefUnwindSafe for ParseSizeError
impl Send for ParseSizeError
impl Sync for ParseSizeError
impl Unpin for ParseSizeError
impl UnwindSafe for ParseSizeError
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