pub trait BlockDevice: Send + Sync {
// Required methods
fn dir(&self) -> &DirectoryProxy;
fn controller(&self) -> &ControllerProxy;
}
Expand description
A trait representing a block device.
pub trait BlockDevice: Send + Sync {
// Required methods
fn dir(&self) -> &DirectoryProxy;
fn controller(&self) -> &ControllerProxy;
}
A trait representing a block device.