#[repr(transparent)]struct SpuriousInt(u32);
Expand description
Spurious Interrupt Vector Register.
Tuple Fields§
§0: u32
Implementations§
source§impl SpuriousInt
impl SpuriousInt
const SPURIOUS_VECTOR_BITS: usize = 8usize
const SPURIOUS_VECTOR_OFFSET: usize = 0usize
sourceconst fn spurious_vector(&self) -> u8
const fn spurious_vector(&self) -> u8
Determines the vector number to be delivered to the processor when the local APIC generates a spurious vector.
Bits: 0..8
sourceconst fn with_spurious_vector(self, value: u8) -> Self
const fn with_spurious_vector(self, value: u8) -> Self
Determines the vector number to be delivered to the processor when the local APIC generates a spurious vector.
Bits: 0..8
sourcefn set_spurious_vector(&mut self, value: u8)
fn set_spurious_vector(&mut self, value: u8)
Determines the vector number to be delivered to the processor when the local APIC generates a spurious vector.
Bits: 0..8
const APIC_ENABLE_BITS: usize = 1usize
const APIC_ENABLE_OFFSET: usize = 8usize
sourceconst fn apic_enable(&self) -> bool
const fn apic_enable(&self) -> bool
Allows software to temporarily enable/disable the local APIC.
Bits: 8..9
sourceconst fn with_apic_enable(self, value: bool) -> Self
const fn with_apic_enable(self, value: bool) -> Self
Allows software to temporarily enable/disable the local APIC.
Bits: 8..9
sourcefn set_apic_enable(&mut self, value: bool)
fn set_apic_enable(&mut self, value: bool)
Allows software to temporarily enable/disable the local APIC.
Bits: 8..9
const FOCUS_PROCESSOR_CHECKING_BITS: usize = 1usize
const FOCUS_PROCESSOR_CHECKING_OFFSET: usize = 9usize
sourceconst fn focus_processor_checking(&self) -> bool
const fn focus_processor_checking(&self) -> bool
Determines if focus processor checking is enabled when using the lowest-priority delivery mode.
Bits: 9..10
sourceconst fn with_focus_processor_checking(self, value: bool) -> Self
const fn with_focus_processor_checking(self, value: bool) -> Self
Determines if focus processor checking is enabled when using the lowest-priority delivery mode.
Bits: 9..10
sourcefn set_focus_processor_checking(&mut self, value: bool)
fn set_focus_processor_checking(&mut self, value: bool)
Determines if focus processor checking is enabled when using the lowest-priority delivery mode.
Bits: 9..10
Trait Implementations§
source§impl Clone for SpuriousInt
impl Clone for SpuriousInt
source§fn clone(&self) -> SpuriousInt
fn clone(&self) -> SpuriousInt
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more