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§
Sourcefn register_mmio(
&self,
) -> <Self::M as ChipsetServicesMeta>::RegisterMmioIntercept
fn register_mmio( &self, ) -> <Self::M as ChipsetServicesMeta>::RegisterMmioIntercept
Obtain an instance of [RegisterMmioIntercept
]
Sourcefn is_being_used(&self) -> bool
fn is_being_used(&self) -> bool
Return true
if any MmioInterceptServices
method has been invoked.