pub enum IrqChipCap {
TscDeadlineTimer,
X2Apic,
MpStateGetSet,
}Expand description
A capability the IrqChip can possibly expose.
Variants§
TscDeadlineTimer
APIC TSC-deadline timer mode.
X2Apic
Extended xAPIC (x2APIC) standard.
MpStateGetSet
Irqchip exposes mp_state_get/set methods. Calling these methods on chips without this capability will result in undefined behavior.
Trait Implementations§
Source§impl Clone for IrqChipCap
impl Clone for IrqChipCap
Source§fn clone(&self) -> IrqChipCap
fn clone(&self) -> IrqChipCap
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IrqChipCap
impl Debug for IrqChipCap
Source§impl PartialEq for IrqChipCap
impl PartialEq for IrqChipCap
impl Copy for IrqChipCap
impl Eq for IrqChipCap
impl StructuralPartialEq for IrqChipCap
Auto Trait Implementations§
impl Freeze for IrqChipCap
impl RefUnwindSafe for IrqChipCap
impl Send for IrqChipCap
impl Sync for IrqChipCap
impl Unpin for IrqChipCap
impl UnwindSafe for IrqChipCap
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