pub trait ErrorType {
    type Error: NorFlashError;
}
Expand description

A trait that NorFlash implementations can use to share an error type.

Required Associated Types§

source

type Error: NorFlashError

Errors returned by this NOR flash.

Implementations on Foreign Types§

source§

impl<T: ErrorType> ErrorType for &mut T

§

type Error = <T as ErrorType>::Error

Implementors§