pub enum CNFSError {
AlreadyMountedPath,
InvalidPath,
PathNotFound,
AlreadyExisted,
NoMountedFilesystem,
NotImplemented,
FSInternal(String),
Unexpected,
}
Expand description
Error definitions
Variants§
AlreadyMountedPath
The path has already mounted a filesystem
InvalidPath
Invalid path
PathNotFound
Path not found
AlreadyExisted
Already existed
NoMountedFilesystem
There is no filesystem mounted on the path
NotImplemented
The method has not been implemented
FSInternal(String)
Internal filesystem error
Unexpected
Unexpected error
Implementations§
Trait Implementations§
source§impl PartialEq for CNFSError
impl PartialEq for CNFSError
impl Eq for CNFSError
impl StructuralPartialEq for CNFSError
Auto Trait Implementations§
impl Freeze for CNFSError
impl RefUnwindSafe for CNFSError
impl Send for CNFSError
impl Sync for CNFSError
impl Unpin for CNFSError
impl UnwindSafe for CNFSError
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