pub enum AtoiSimdError<'a> {
Empty,
Size(usize, &'a [u8]),
Overflow(&'a [u8]),
Invalid64(u64, usize, &'a [u8]),
Invalid128(u128, usize, &'a [u8]),
}Variants§
Empty
Size(usize, &'a [u8])
Overflow(&'a [u8])
Invalid64(u64, usize, &'a [u8])
Invalid128(u128, usize, &'a [u8])
Trait Implementations§
Source§impl<'a> Clone for AtoiSimdError<'a>
impl<'a> Clone for AtoiSimdError<'a>
Source§fn clone(&self) -> AtoiSimdError<'a>
fn clone(&self) -> AtoiSimdError<'a>
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<'a> Debug for AtoiSimdError<'a>
impl<'a> Debug for AtoiSimdError<'a>
Source§impl Display for AtoiSimdError<'_>
impl Display for AtoiSimdError<'_>
Source§impl Error for AtoiSimdError<'_>
impl Error for AtoiSimdError<'_>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl<'a> Ord for AtoiSimdError<'a>
impl<'a> Ord for AtoiSimdError<'a>
Source§fn cmp(&self, other: &AtoiSimdError<'a>) -> Ordering
fn cmp(&self, other: &AtoiSimdError<'a>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> PartialEq for AtoiSimdError<'a>
impl<'a> PartialEq for AtoiSimdError<'a>
Source§impl<'a> PartialOrd for AtoiSimdError<'a>
impl<'a> PartialOrd for AtoiSimdError<'a>
impl<'a> Copy for AtoiSimdError<'a>
impl<'a> Eq for AtoiSimdError<'a>
impl<'a> StructuralPartialEq for AtoiSimdError<'a>
Auto Trait Implementations§
impl<'a> Freeze for AtoiSimdError<'a>
impl<'a> RefUnwindSafe for AtoiSimdError<'a>
impl<'a> Send for AtoiSimdError<'a>
impl<'a> Sync for AtoiSimdError<'a>
impl<'a> Unpin for AtoiSimdError<'a>
impl<'a> UnwindSafe for AtoiSimdError<'a>
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