pub enum MultiErrors {
TryTupToArrError(TryTupToArrErr),
TryFromIntStrError(TryFromIntStrErr),
TryFromIntErr(TryFromIntError),
ParseIntErr(ParseIntError),
TryFromByAddErr,
TryIntoByAddErr,
}Available on crate features
try_from_int_str and try_tup_to_arr8 and try_tup_to_arr16 only.Expand description
Enumeration error variants for the crate.
Variants§
TryTupToArrError(TryTupToArrErr)
Available on crate features
try_tup_to_arr8 or try_tup_to_arr16 only.Variant for the trait TryTupToArr.
TryFromIntStrError(TryFromIntStrErr)
Variant for the trait TryFromIntStr.
TryFromIntErr(TryFromIntError)
Variant for the core trait TryFrom.
ParseIntErr(ParseIntError)
Variant for the method parse.
TryFromByAddErr
Variant for the trait TryFromByAdd.
TryIntoByAddErr
Variant for the trait TryIntoByAdd.
Trait Implementations§
Source§impl Clone for MultiErrors
Available on crate features try_tup_to_arr8 or try_tup_to_arr16 or try_from_int_str only.
impl Clone for MultiErrors
Available on crate features
try_tup_to_arr8 or try_tup_to_arr16 or try_from_int_str only.Source§fn clone(&self) -> MultiErrors
fn clone(&self) -> MultiErrors
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 MultiErrors
Available on crate features try_tup_to_arr8 or try_tup_to_arr16 or try_from_int_str only.
impl Debug for MultiErrors
Available on crate features
try_tup_to_arr8 or try_tup_to_arr16 or try_from_int_str only.Source§impl From<MultiErrors> for ConvertErrors
Available on crate features try_tup_to_arr8 or try_tup_to_arr16 or try_from_int_str only.
impl From<MultiErrors> 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: MultiErrors) -> Self
fn from(err: MultiErrors) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MultiErrors
Available on crate features try_tup_to_arr8 or try_tup_to_arr16 or try_from_int_str only.
impl PartialEq for MultiErrors
Available on crate features
try_tup_to_arr8 or try_tup_to_arr16 or try_from_int_str only.impl Eq for MultiErrors
Available on crate features
try_tup_to_arr8 or try_tup_to_arr16 or try_from_int_str only.impl StructuralPartialEq for MultiErrors
Available on crate features
try_tup_to_arr8 or try_tup_to_arr16 or try_from_int_str only.Auto Trait Implementations§
impl Freeze for MultiErrors
impl RefUnwindSafe for MultiErrors
impl Send for MultiErrors
impl Sync for MultiErrors
impl Unpin for MultiErrors
impl UnwindSafe for MultiErrors
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