Enum Error
pub enum Error {
InterruptChannel(InterruptError),
}
Expand description
Input-related errors.
Variants§
InterruptChannel(InterruptError)
Available on crate feature
external-interrupts
only.Error when hitting hardware limitations regarding interrupt registration.
Trait Implementations§
§impl Format for Errorwhere
InterruptError: Format,
impl Format for Errorwhere
InterruptError: Format,
§impl From<InterruptError> for Error
Available on crate feature external-interrupts
only.
impl From<InterruptError> for Error
Available on crate feature
external-interrupts
only.§fn from(err: InterruptError) -> Error
fn from(err: InterruptError) -> Error
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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