#[repr(u8)]pub enum FsckOrder {
NoCheck = 0,
Boot = 1,
PostBoot = 2,
}
Expand description
The order in which the filesystems should be checked.
Variants§
NoCheck = 0
Never check the filesystem automatically.
Boot = 1
Check the filesystem while booting.
PostBoot = 2
Check the filesystem after the boot process has finished.
Trait Implementations§
Source§impl TryFrom<&str> for FsckOrder
impl TryFrom<&str> for FsckOrder
Source§type Error = FsTableError
type Error = FsTableError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for FsckOrder
impl RefUnwindSafe for FsckOrder
impl Send for FsckOrder
impl Sync for FsckOrder
impl Unpin for FsckOrder
impl UnwindSafe for FsckOrder
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