pub enum BootRecordImpl {
MsSys,
Bootrec,
}Expand description
Backend used to write MBR boot code and the partition boot record.
Variants§
MsSys
Shell out to the external ms-sys binary. Legacy v0.2 path.
Bootrec
Use the in-process bootrec library. Default from v1.0.
Implementations§
Trait Implementations§
Source§impl Clone for BootRecordImpl
impl Clone for BootRecordImpl
Source§fn clone(&self) -> BootRecordImpl
fn clone(&self) -> BootRecordImpl
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BootRecordImpl
impl Debug for BootRecordImpl
Source§impl PartialEq for BootRecordImpl
impl PartialEq for BootRecordImpl
Source§fn eq(&self, other: &BootRecordImpl) -> bool
fn eq(&self, other: &BootRecordImpl) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for BootRecordImpl
impl Eq for BootRecordImpl
impl StructuralPartialEq for BootRecordImpl
Auto Trait Implementations§
impl Freeze for BootRecordImpl
impl RefUnwindSafe for BootRecordImpl
impl Send for BootRecordImpl
impl Sync for BootRecordImpl
impl Unpin for BootRecordImpl
impl UnsafeUnpin for BootRecordImpl
impl UnwindSafe for BootRecordImpl
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