[][src]Struct acpi::HpetInfo

pub struct HpetInfo {
    pub event_timer_block_id: u32,
    pub base_address: usize,
    pub hpet_number: u8,
    pub clock_tick_unit: u16,
    pub page_protection: PageProtection,
}

Information about the High Precision Event Timer

Fields

event_timer_block_id: u32base_address: usizehpet_number: u8clock_tick_unit: u16

The minimum number of clock ticks that can be set without losing interrupts (for timers in Periodic Mode)

page_protection: PageProtection

Implementations

impl HpetInfo[src]

pub fn new<H>(tables: &AcpiTables<H>) -> Result<HpetInfo, AcpiError> where
    H: AcpiHandler
[src]

Trait Implementations

impl Debug for HpetInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.