pub struct TryFromIntStrErr { /* private fields */ }Available on crate feature
try_from_int_str only.Expand description
An error which can be returned when parsing an integer or string.
Implementations§
Source§impl TryFromIntStrErr
impl TryFromIntStrErr
Sourcepub fn multi_err(&self) -> &IntStrError
pub fn multi_err(&self) -> &IntStrError
Returns the enum error variant when converting a integer or string.
Trait Implementations§
Source§impl Clone for TryFromIntStrErr
impl Clone for TryFromIntStrErr
Source§fn clone(&self) -> TryFromIntStrErr
fn clone(&self) -> TryFromIntStrErr
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 TryFromIntStrErr
impl Debug for TryFromIntStrErr
Source§impl Display for TryFromIntStrErr
impl Display for TryFromIntStrErr
Source§impl From<TryFromIntStrErr> for ConvertErrors
Available on crate features try_tup_to_arr8 or try_tup_to_arr16 or try_from_int_str only.
impl From<TryFromIntStrErr> for ConvertErrors
Available on crate features
try_tup_to_arr8 or try_tup_to_arr16 or try_from_int_str only.Source§fn from(err: TryFromIntStrErr) -> Self
fn from(err: TryFromIntStrErr) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TryFromIntStrErr
impl PartialEq for TryFromIntStrErr
impl Eq for TryFromIntStrErr
impl StructuralPartialEq for TryFromIntStrErr
Auto Trait Implementations§
impl Freeze for TryFromIntStrErr
impl RefUnwindSafe for TryFromIntStrErr
impl Send for TryFromIntStrErr
impl Sync for TryFromIntStrErr
impl Unpin for TryFromIntStrErr
impl UnwindSafe for TryFromIntStrErr
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