pub trait BlockDevice: Send + Sync { // Required method fn connector(&self) -> Box<dyn BlockConnector>; }
A trait representing a block device.