pub struct ParseBoolError { /* private fields */ }Available on crate feature
parsing only.Expand description
The error returned by bool-parsing methods.
Implementations§
Source§impl ParseBoolError
impl ParseBoolError
Sourcepub const fn to_panicval(&self, fmtarg: FmtArg) -> PanicVal<'static>
pub const fn to_panicval(&self, fmtarg: FmtArg) -> PanicVal<'static>
Formats a ParseBoolError
Sourcepub const fn to_panicvals(&self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
pub const fn to_panicvals(&self, fmtarg: FmtArg) -> [PanicVal<'static>; 1]
Formats a ParseBoolError
Trait Implementations§
Source§impl Clone for ParseBoolError
impl Clone for ParseBoolError
Source§fn clone(&self) -> ParseBoolError
fn clone(&self) -> ParseBoolError
Returns a duplicate 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 ParseBoolError
impl Debug for ParseBoolError
Source§impl Display for ParseBoolError
impl Display for ParseBoolError
Source§impl PanicFmt for ParseBoolError
impl PanicFmt for ParseBoolError
Source§const PV_COUNT: usize = 1usize
const PV_COUNT: usize = 1usize
The length of the array returned in
Self::to_panicvals
(an inherent method that formats the type for panic messages).Source§type This = ParseBoolError
type This = ParseBoolError
The type after dereferencing all references. Read more
Source§type Kind = IsCustomType
type Kind = IsCustomType
Whether this is a user-defined type or standard library type. Read more
Source§impl PartialEq for ParseBoolError
impl PartialEq for ParseBoolError
impl Copy for ParseBoolError
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