Enum IpiTarget
pub enum IpiTarget {
Current {
cpu_id: usize,
},
Other {
cpu_id: usize,
},
AllExceptCurrent {
cpu_id: usize,
cpu_num: usize,
},
}
Available on crate features
irq
and ipi
only.Expand description
Target specification for inter-processor interrupts (IPIs).
Variants§
Current
Send to the current CPU.
Other
Send to a specific CPU.
AllExceptCurrent
Send to all other CPUs.
Auto Trait Implementations§
impl Freeze for IpiTarget
impl RefUnwindSafe for IpiTarget
impl Send for IpiTarget
impl Sync for IpiTarget
impl Unpin for IpiTarget
impl UnwindSafe for IpiTarget
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