pub enum BootDevice {
Floppy = 0,
Optical = 1,
HardDrive = 2,
Network = 3,
}
Expand description
A particular kind of boot device PCAT understands.
Variants§
Trait Implementations§
Source§impl Clone for BootDevice
impl Clone for BootDevice
Source§fn clone(&self) -> BootDevice
fn clone(&self) -> BootDevice
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BootDevice
impl Debug for BootDevice
impl Copy for BootDevice
Auto Trait Implementations§
impl Freeze for BootDevice
impl RefUnwindSafe for BootDevice
impl Send for BootDevice
impl Sync for BootDevice
impl Unpin for BootDevice
impl UnwindSafe for BootDevice
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