pub struct HvSynicStimerConfig(/* private fields */);
Implementations§
Source§impl HvSynicStimerConfig
impl HvSynicStimerConfig
Sourcepub const fn with_enabled_checked(self, value: bool) -> Result<Self, ()>
pub const fn with_enabled_checked(self, value: bool) -> Result<Self, ()>
Bits: 0..1
Sourcepub const fn with_enabled(self, value: bool) -> Self
pub const fn with_enabled(self, value: bool) -> Self
Bits: 0..1
Sourcepub const fn set_enabled(&mut self, value: bool)
pub const fn set_enabled(&mut self, value: bool)
Bits: 0..1
Sourcepub const fn with_periodic_checked(self, value: bool) -> Result<Self, ()>
pub const fn with_periodic_checked(self, value: bool) -> Result<Self, ()>
Bits: 1..2
Sourcepub const fn with_periodic(self, value: bool) -> Self
pub const fn with_periodic(self, value: bool) -> Self
Bits: 1..2
Sourcepub const fn set_periodic(&mut self, value: bool)
pub const fn set_periodic(&mut self, value: bool)
Bits: 1..2
Sourcepub const fn with_lazy_checked(self, value: bool) -> Result<Self, ()>
pub const fn with_lazy_checked(self, value: bool) -> Result<Self, ()>
Bits: 2..3
Sourcepub const fn auto_enable(&self) -> bool
pub const fn auto_enable(&self) -> bool
Bits: 3..4
Sourcepub const fn with_auto_enable_checked(self, value: bool) -> Result<Self, ()>
pub const fn with_auto_enable_checked(self, value: bool) -> Result<Self, ()>
Bits: 3..4
Sourcepub const fn with_auto_enable(self, value: bool) -> Self
pub const fn with_auto_enable(self, value: bool) -> Self
Bits: 3..4
Sourcepub const fn set_auto_enable(&mut self, value: bool)
pub const fn set_auto_enable(&mut self, value: bool)
Bits: 3..4
Sourcepub const fn apic_vector(&self) -> u8
pub const fn apic_vector(&self) -> u8
Bits: 4..12
Sourcepub const fn with_apic_vector_checked(self, value: u8) -> Result<Self, ()>
pub const fn with_apic_vector_checked(self, value: u8) -> Result<Self, ()>
Bits: 4..12
Sourcepub const fn with_apic_vector(self, value: u8) -> Self
pub const fn with_apic_vector(self, value: u8) -> Self
Bits: 4..12
Sourcepub const fn set_apic_vector(&mut self, value: u8)
pub const fn set_apic_vector(&mut self, value: u8)
Bits: 4..12
Sourcepub const fn direct_mode(&self) -> bool
pub const fn direct_mode(&self) -> bool
Bits: 12..13
Sourcepub const fn with_direct_mode_checked(self, value: bool) -> Result<Self, ()>
pub const fn with_direct_mode_checked(self, value: bool) -> Result<Self, ()>
Bits: 12..13
Sourcepub const fn with_direct_mode(self, value: bool) -> Self
pub const fn with_direct_mode(self, value: bool) -> Self
Bits: 12..13
Sourcepub const fn set_direct_mode(&mut self, value: bool)
pub const fn set_direct_mode(&mut self, value: bool)
Bits: 12..13
Sourcepub const fn with_sint_checked(self, value: u8) -> Result<Self, ()>
pub const fn with_sint_checked(self, value: u8) -> Result<Self, ()>
Bits: 16..20
Trait Implementations§
Source§impl Clone for HvSynicStimerConfig
impl Clone for HvSynicStimerConfig
Source§fn clone(&self) -> HvSynicStimerConfig
fn clone(&self) -> HvSynicStimerConfig
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 HvSynicStimerConfig
impl Debug for HvSynicStimerConfig
Source§impl Default for HvSynicStimerConfig
impl Default for HvSynicStimerConfig
Source§impl From<HvSynicStimerConfig> for u64
impl From<HvSynicStimerConfig> for u64
Source§fn from(v: HvSynicStimerConfig) -> u64
fn from(v: HvSynicStimerConfig) -> u64
Converts to this type from the input type.
Source§impl From<u64> for HvSynicStimerConfig
impl From<u64> for HvSynicStimerConfig
impl Copy for HvSynicStimerConfig
Auto Trait Implementations§
impl Freeze for HvSynicStimerConfig
impl RefUnwindSafe for HvSynicStimerConfig
impl Send for HvSynicStimerConfig
impl Sync for HvSynicStimerConfig
impl Unpin for HvSynicStimerConfig
impl UnwindSafe for HvSynicStimerConfig
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