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
source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
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 ==
.