pub enum BootEntryOptData {
None,
String {
string: String,
},
Guid {
guid: Guid,
},
Data {
bytes: Vec<u8>,
},
}Variants§
Trait Implementations§
Source§impl Debug for BootEntryOptData
impl Debug for BootEntryOptData
Auto Trait Implementations§
impl Freeze for BootEntryOptData
impl RefUnwindSafe for BootEntryOptData
impl Send for BootEntryOptData
impl Sync for BootEntryOptData
impl Unpin for BootEntryOptData
impl UnsafeUnpin for BootEntryOptData
impl UnwindSafe for BootEntryOptData
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