Trait MmioInterceptServices

Source
pub trait MmioInterceptServices: ChipsetServices {
    // Required methods
    fn register_mmio(
        &self,
    ) -> <Self::M as ChipsetServicesMeta>::RegisterMmioIntercept;
    fn is_being_used(&self) -> bool;
}
Expand description

Implemented by chipsets that can support MmioIntercept devices.

Required Methods§

Source

fn register_mmio( &self, ) -> <Self::M as ChipsetServicesMeta>::RegisterMmioIntercept

Obtain an instance of [RegisterMmioIntercept]

Source

fn is_being_used(&self) -> bool

Return true if any MmioInterceptServices method has been invoked.

Implementors§