pub enum BootInfoType {
Std(BootInfoStdId),
Impdef(BootInfoImpdefId),
}Expand description
Boot information type.
Variants§
Std(BootInfoStdId)
Impdef(BootInfoImpdefId)
Trait Implementations§
Source§impl Clone for BootInfoType
impl Clone for BootInfoType
Source§fn clone(&self) -> BootInfoType
fn clone(&self) -> BootInfoType
Returns a duplicate 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 BootInfoType
impl Debug for BootInfoType
Source§impl From<BootInfoType> for u8
impl From<BootInfoType> for u8
Source§fn from(value: BootInfoType) -> Self
fn from(value: BootInfoType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BootInfoType
impl PartialEq for BootInfoType
Source§impl TryFrom<u8> for BootInfoType
impl TryFrom<u8> for BootInfoType
impl Copy for BootInfoType
impl Eq for BootInfoType
impl StructuralPartialEq for BootInfoType
Auto Trait Implementations§
impl Freeze for BootInfoType
impl RefUnwindSafe for BootInfoType
impl Send for BootInfoType
impl Sync for BootInfoType
impl Unpin for BootInfoType
impl UnwindSafe for BootInfoType
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