Struct virtio_driver::Completion
source · pub struct Completion<C> {
pub context: C,
pub ret: i32,
}Expand description
The result of a completed request.
Type parameter C denotes the type of the “context” associated with the request.
Fields§
§context: CThe user-defined “context” that was associated with the request.
ret: i320 on success, a negative errno value on error.