pub enum DriveMedia {
HardDrive(Disk),
OpticalDrive(Arc<dyn AsyncScsiDisk>),
}
Variants§
Implementations§
Source§impl DriveMedia
impl DriveMedia
pub fn hard_disk(disk: Disk) -> Self
pub fn optical_disk(scsi_disk: Arc<dyn AsyncScsiDisk>) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DriveMedia
impl !RefUnwindSafe for DriveMedia
impl Send for DriveMedia
impl Sync for DriveMedia
impl Unpin for DriveMedia
impl !UnwindSafe for DriveMedia
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more