usbvfiod 0.2.0

A vfio-user server for USB pass-through.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # Particle Device Emulation Code
//!
//! This crate contains device emulation code for the Particle VMM. It
//! should never depend on SLVM, x86 or Linux specific parts.

#![deny(missing_docs)]
#![deny(rustdoc::all)]
#![deny(clippy::must_use_candidate)]
#![deny(missing_debug_implementations)]

pub mod bus;
pub mod interval;
pub mod msi_receiver;
pub mod pci;
pub mod register_set;