Enum kvm_ioctls::IoEventAddress[][src]

pub enum IoEventAddress {
    Pio(u64),
    Mmio(u64),
}
Expand description

An address either in programmable I/O space or in memory mapped I/O space.

The IoEventAddress is used for specifying the type when registering an event in register_ioevent.

Variants

Pio(u64)

Representation of an programmable I/O address.

Tuple Fields of Pio

0: u64
Mmio(u64)

Representation of an memory mapped I/O address.

Tuple Fields of Mmio

0: u64

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.