pub struct IrqOutcome {
pub handled: bool,
pub wake: bool,
pub called: usize,
}Expand description
Aggregated dispatch result.
Fields§
§handled: boolAt least one action handled the IRQ.
wake: boolAt least one action requested a wakeup.
called: usizeNumber of handlers called by this dispatch.
Trait Implementations§
Source§impl Clone for IrqOutcome
impl Clone for IrqOutcome
Source§fn clone(&self) -> IrqOutcome
fn clone(&self) -> IrqOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for IrqOutcome
Source§impl Debug for IrqOutcome
impl Debug for IrqOutcome
Source§impl Default for IrqOutcome
impl Default for IrqOutcome
Source§fn default() -> IrqOutcome
fn default() -> IrqOutcome
Returns the “default value” for a type. Read more
impl Eq for IrqOutcome
Source§impl PartialEq for IrqOutcome
impl PartialEq for IrqOutcome
Source§fn eq(&self, other: &IrqOutcome) -> bool
fn eq(&self, other: &IrqOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IrqOutcome
Auto Trait Implementations§
impl Freeze for IrqOutcome
impl RefUnwindSafe for IrqOutcome
impl Send for IrqOutcome
impl Sync for IrqOutcome
impl Unpin for IrqOutcome
impl UnsafeUnpin for IrqOutcome
impl UnwindSafe for IrqOutcome
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