pub enum DriveMedia {
HardDrive(Disk),
OpticalDrive(Arc<dyn AsyncScsiDisk>),
}
Variants§
Implementations§
Source§impl DriveMedia
impl DriveMedia
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