pub enum IrqScope {
Global,
PerCpu {
cpus: CpuMask,
},
}Expand description
IRQ registration scope.
Variants§
Global
The action is visible on every CPU.
PerCpu
The action is CPU-local and only visible to matching CPUs.
Trait Implementations§
impl Copy for IrqScope
impl Eq for IrqScope
impl StructuralPartialEq for IrqScope
Auto Trait Implementations§
impl Freeze for IrqScope
impl RefUnwindSafe for IrqScope
impl Send for IrqScope
impl Sync for IrqScope
impl Unpin for IrqScope
impl UnsafeUnpin for IrqScope
impl UnwindSafe for IrqScope
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