Struct timecat::ParseBoolError
1.0.0 · source · #[non_exhaustive]pub struct ParseBoolError;Expand description
An error returned when parsing a bool using from_str fails
Trait Implementations§
1.0.0 · source§impl Clone for ParseBoolError
impl Clone for ParseBoolError
source§fn clone(&self) -> ParseBoolError
fn clone(&self) -> ParseBoolError
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 more1.0.0 · source§impl Debug for ParseBoolError
impl Debug for ParseBoolError
1.0.0 · source§impl Display for ParseBoolError
impl Display for ParseBoolError
1.0.0 · source§impl Error for ParseBoolError
impl Error for ParseBoolError
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<ParseBoolError> for EngineError
impl From<ParseBoolError> for EngineError
source§fn from(error: ParseBoolError) -> Self
fn from(error: ParseBoolError) -> Self
Converts to this type from the input type.
1.0.0 · source§impl PartialEq for ParseBoolError
impl PartialEq for ParseBoolError
source§fn eq(&self, other: &ParseBoolError) -> bool
fn eq(&self, other: &ParseBoolError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for ParseBoolError
impl StructuralPartialEq for ParseBoolError
Auto Trait Implementations§
impl Freeze for ParseBoolError
impl RefUnwindSafe for ParseBoolError
impl Send for ParseBoolError
impl Sync for ParseBoolError
impl Unpin for ParseBoolError
impl UnwindSafe for ParseBoolError
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
source§impl<T> CustomColorize for Twhere
T: ToString,
impl<T> CustomColorize for Twhere
T: ToString,
fn colorize( &self, style_functions: &[fn(_: ColoredString) -> ColoredString], ) -> String
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more