pub enum Return {
None,
Handled,
WakeThread,
}
Expand description
The return value from interrupt handlers.
Variants
None
The interrupt was not from this device or was not handled.
Handled
The interrupt was handled by this device.
WakeThread
The handler wants the handler thread to wake up.
Auto Trait Implementations
impl RefUnwindSafe for Return
impl Send for Return
impl Sync for Return
impl Unpin for Return
impl UnwindSafe for Return
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more