Struct kernel::drivers::disk::Request [] [src]

pub struct Request {
    pub extent: Extent,
    pub mem: usize,
    pub read: bool,
    pub complete: Arc<AtomicBool>,
}

A disk request

Fields

extent

The disk extent

mem

The memory location

read

The request type

complete

Completion indicator

Trait Implementations

impl Clone for Request

fn clone(&self) -> Self

fn clone_from(&mut self, source: &Self)