pub trait PortIoInterceptServices: ChipsetServices {
// Required methods
fn register_pio(
&self,
) -> <Self::M as ChipsetServicesMeta>::RegisterPortIoIntercept;
fn is_being_used(&self) -> bool;
}Expand description
Implemented by chipsets that can support PortIoIntercept devices.
Required Methods§
Sourcefn register_pio(
&self,
) -> <Self::M as ChipsetServicesMeta>::RegisterPortIoIntercept
fn register_pio( &self, ) -> <Self::M as ChipsetServicesMeta>::RegisterPortIoIntercept
Obtain an instance of [RegisterPortIoIntercept]
Sourcefn is_being_used(&self) -> bool
fn is_being_used(&self) -> bool
Return true if any PortIoInterceptServices method has been invoked.