Enum bytecheck::SliceCheckError [−][src]
pub enum SliceCheckError<T> {
CheckBytes {
index: usize,
error: T,
},
}Expand description
An error resulting from an invalid slice.
Variants
Expand description
An element of the slice failed to validate
Show fields
Fields of CheckBytes
index: usizeExpand description
The index of the invalid element
error: TExpand description
The error that occured while validating the invalid element
Trait Implementations
impl<T: Debug> Debug for SliceCheckError<T>[src]
impl<T: Debug> Debug for SliceCheckError<T>[src]impl<T: Display> Display for SliceCheckError<T>[src]
impl<T: Display> Display for SliceCheckError<T>[src]impl<T: Debug + Display> Error for SliceCheckError<T>[src]
impl<T: Debug + Display> Error for SliceCheckError<T>[src]fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]
fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]The lower-level source of this error, if any. Read more
fn backtrace(&self) -> Option<&Backtrace>[src]
fn backtrace(&self) -> Option<&Backtrace>[src]🔬 This is a nightly-only experimental API. (
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
fn description(&self) -> &str1.0.0[src]
fn description(&self) -> &str1.0.0[src]👎 Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations
impl<T> RefUnwindSafe for SliceCheckError<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for SliceCheckError<T> where
T: Send,
T: Send,
impl<T> Sync for SliceCheckError<T> where
T: Sync,
T: Sync,
impl<T> Unpin for SliceCheckError<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for SliceCheckError<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more