pub enum BdeVariant {
WindowsVista,
Windows7OrLater,
BitLockerToGo,
}Expand description
Which BitLocker on-disk volume-header layout was recognised.
Variants§
WindowsVista
Windows Vista (-FVE-FS-, boot EB 52 90): metadata block 1 is a cluster
number; the other two offsets come from the metadata block header.
Windows7OrLater
Windows 7 and later (-FVE-FS-, boot EB 58 90).
BitLockerToGo
BitLocker To Go on a FAT volume (MSWIN4.1).
Trait Implementations§
Source§impl Clone for BdeVariant
impl Clone for BdeVariant
Source§fn clone(&self) -> BdeVariant
fn clone(&self) -> BdeVariant
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 moreimpl Copy for BdeVariant
Source§impl Debug for BdeVariant
impl Debug for BdeVariant
impl Eq for BdeVariant
Source§impl PartialEq for BdeVariant
impl PartialEq for BdeVariant
Source§fn eq(&self, other: &BdeVariant) -> bool
fn eq(&self, other: &BdeVariant) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BdeVariant
Auto Trait Implementations§
impl Freeze for BdeVariant
impl RefUnwindSafe for BdeVariant
impl Send for BdeVariant
impl Sync for BdeVariant
impl Unpin for BdeVariant
impl UnsafeUnpin for BdeVariant
impl UnwindSafe for BdeVariant
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