pub enum ReadGPT {
RevisionOne,
Never,
}
Expand description
What type of GPT partition tables should we attempt to read?
Variants§
RevisionOne
A valid GPT partition table as of revision 1 (2010-2017 and counting)
Never
Require that there be an MBR partition present. The protective MBR will be read literally.
Auto Trait Implementations§
impl Freeze for ReadGPT
impl RefUnwindSafe for ReadGPT
impl Send for ReadGPT
impl Sync for ReadGPT
impl Unpin for ReadGPT
impl UnwindSafe for ReadGPT
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