Struct core::str::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§
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
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 ParseBoolError
impl Debug for ParseBoolError
source§impl Display for ParseBoolError
impl Display for ParseBoolError
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 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 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