Struct bytecheck::ArrayCheckError [−][src]
pub struct ArrayCheckError<T> {
pub index: usize,
pub error: T,
}Expand description
An error resulting from an invalid array.
Fields
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 ArrayCheckError<T>[src]
impl<T: Debug> Debug for ArrayCheckError<T>[src]impl<T: Display> Display for ArrayCheckError<T>[src]
impl<T: Display> Display for ArrayCheckError<T>[src]impl<T: Debug + Display> Error for ArrayCheckError<T>[src]
impl<T: Debug + Display> Error for ArrayCheckError<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 ArrayCheckError<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for ArrayCheckError<T> where
T: Send,
T: Send,
impl<T> Sync for ArrayCheckError<T> where
T: Sync,
T: Sync,
impl<T> Unpin for ArrayCheckError<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for ArrayCheckError<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