1//! A module containing virtios transport mechanisms.
2//!
3//! The module contains only PCI specific transport mechanism.
4//! Other mechanisms (MMIO and Channel I/O) are currently not
5//! supported.
67#[cfg(not(feature = "pci"))]
8pub mod mmio;
9#[cfg(feature = "pci")]
10pub mod pci;