pub type Port<Layout, Base, Access> = Register<Layout, Access, PortIo<Base, Access>>;Expand description
A specialization of Register representing an x86 I/O port.
Example usage:
use regio::RwSafe;
use regio::x86::Port;
const IO_PORT: Port<u8, u8, RwSafe> = Port::new(0x3f8);Aliased Type§
pub struct Port<Layout, Base, Access> { /* private fields */ }