Trait BlockDevice

Source
pub trait BlockDevice: Send + Sync {
    // Required method
    fn connector(&self) -> Box<dyn BlockConnector>;
}
Expand description

A trait representing a block device.

Required Methods§

Source

fn connector(&self) -> Box<dyn BlockConnector>

Implementors§