pub enum FatType {
Fat12,
Fat16,
Fat32,
}Expand description
FAT filesystem type
Variants§
Fat12
12-bit FAT entries.
Fat16
16-bit FAT entries.
Fat32
28-bit cluster values stored in 32-bit FAT entries.
Trait Implementations§
impl Copy for FatType
impl Eq for FatType
Source§impl From<FatType> for FatTypeSelection
impl From<FatType> for FatTypeSelection
impl StructuralPartialEq for FatType
Auto Trait Implementations§
impl Freeze for FatType
impl RefUnwindSafe for FatType
impl Send for FatType
impl Sync for FatType
impl Unpin for FatType
impl UnsafeUnpin for FatType
impl UnwindSafe for FatType
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