pub enum DriveRibbon {
None,
Single(Disk),
}
Expand description
Floppy disk drive configuration
Variants§
Implementations§
Source§impl DriveRibbon
impl DriveRibbon
Sourcepub fn from_vec(drives: Vec<Disk>) -> Result<Self, TooManyDrives>
pub fn from_vec(drives: Vec<Disk>) -> Result<Self, TooManyDrives>
Create a new DriveRibbon
from a vector of Disk
s.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DriveRibbon
impl !RefUnwindSafe for DriveRibbon
impl Send for DriveRibbon
impl Sync for DriveRibbon
impl Unpin for DriveRibbon
impl !UnwindSafe for DriveRibbon
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