Trait x86_64::structures::port::PortWrite[][src]

pub trait PortWrite {
    unsafe fn write_to_port(port: u16, value: Self);
}
Expand description

A helper trait that implements the write port operation.

On x86, I/O ports operate on either u8 (via inb/outb), u16 (via inw/outw), or u32 (via inl/outl). Therefore this trait is implemented for exactly these types.

Required methods

unsafe fn write_to_port(port: u16, value: Self)[src]

Expand description

Writes a Self value to the given port.

Safety

This function is unsafe because the I/O port could have side effects that violate memory safety.

Loading content...

Implementors

impl PortWrite for u8[src]

unsafe fn write_to_port(port: u16, value: u8)[src]

impl PortWrite for u16[src]

unsafe fn write_to_port(port: u16, value: u16)[src]

impl PortWrite for u32[src]

unsafe fn write_to_port(port: u16, value: u32)[src]

Loading content...