pub trait RegisterHostIoPortFastPath { // Required method fn register(&self, range: RangeInclusive<u16>) -> Box<dyn Send>; }
Trait for registering host IO ports.
Registers ports in range to go directly to the host.
range
When the return value is dropped, the ports will be unregistered.