pub enum FsTableError {
InvalidEntry(String),
InvalidNumberConversion(String),
InvalidFsckOrder(u8),
IoError(Error),
LsblkError(LsblkError),
}
Variants§
InvalidEntry(String)
InvalidNumberConversion(String)
InvalidFsckOrder(u8)
IoError(Error)
LsblkError(LsblkError)
Trait Implementations§
Source§impl Debug for FsTableError
impl Debug for FsTableError
Source§impl Display for FsTableError
impl Display for FsTableError
Source§impl Error for FsTableError
impl Error for FsTableError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for FsTableError
impl From<Error> for FsTableError
Source§impl From<LsblkError> for FsTableError
impl From<LsblkError> for FsTableError
Source§fn from(source: LsblkError) -> Self
fn from(source: LsblkError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FsTableError
impl !RefUnwindSafe for FsTableError
impl Send for FsTableError
impl Sync for FsTableError
impl Unpin for FsTableError
impl !UnwindSafe for FsTableError
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