Struct virtio_driver::virtqueue::VirtqueueCompletion
source · pub struct VirtqueueCompletion<R> {
pub idx: u16,
pub req: R,
}Expand description
The result of a completed request
Fields§
§idx: u16The index of the first descriptor of the request as returned by add_request.
req: RDevice-specific per-request data like the request header or status byte.