pub enum FsType {
Ext2,
Ext3,
Ext4,
}Expand description
Filesystem type for creation.
Variants§
Ext2
ext2 filesystem (no journaling)
Ext3
ext3 filesystem (with journaling)
Ext4
ext4 filesystem (with extents and journaling)
Trait Implementations§
impl Copy for FsType
impl Eq for FsType
impl StructuralPartialEq for FsType
Auto Trait Implementations§
impl Freeze for FsType
impl RefUnwindSafe for FsType
impl Send for FsType
impl Sync for FsType
impl Unpin for FsType
impl UnsafeUnpin for FsType
impl UnwindSafe for FsType
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