[−][src]Struct sunrise_libuser::error::FileSystemError
FileSystem driver errors.
Implementations
impl FileSystemError[src]
pub const Unknown: FileSystemError[src]
Unknown error.
pub const PathNotFound: FileSystemError[src]
The given resource couldn't be found.
pub const PathExists: FileSystemError[src]
A resource at the given path already exist.
pub const InUse: FileSystemError[src]
Resource already in use.
pub const NoSpaceLeft: FileSystemError[src]
There isn't enough space for a resource to be stored.
pub const InvalidPartition: FileSystemError[src]
The partition wasn't used as it's invalid.
pub const OutOfRange: FileSystemError[src]
Specified value is out of range.
pub const WriteFailed: FileSystemError[src]
A writing operation failed on the attached storage device.
pub const ReadFailed: FileSystemError[src]
A read operation failed on the attached storage device.
pub const PartitionNotFound: FileSystemError[src]
The given partition cannot be found.
pub const InvalidInput: FileSystemError[src]
The given input wasn't valid.
pub const PathTooLong: FileSystemError[src]
The given path is too long to be resolved.
pub const ReadOnlyFileSystem: FileSystemError[src]
Attempted to modify a read-only filesystem.
pub const AccessDenied: FileSystemError[src]
The access to a given resource has been denied.
pub const FileNotFound: FileSystemError[src]
The requested file wasn't found.
pub const UnsupportedOperation: FileSystemError[src]
The requested operation isn't supported by the detail.
pub const DirectoryNotFound: FileSystemError[src]
The requested directory wasn't found.
pub const NotAFile: FileSystemError[src]
The given resource cannot be represented as a file.
pub const NotADirectory: FileSystemError[src]
The given resource cannot be represented as a directory.
pub const DiskNotFound: FileSystemError[src]
The given disk id doesn't correspond to a any known disk.
Trait Implementations
impl Clone for FileSystemError[src]
fn clone(&self) -> FileSystemError[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for FileSystemError[src]
impl Debug for FileSystemError[src]
impl Eq for FileSystemError[src]
impl From<FileSystemError> for Error[src]
fn from(error: FileSystemError) -> Self[src]
impl PartialEq<FileSystemError> for FileSystemError[src]
fn eq(&self, other: &FileSystemError) -> bool[src]
fn ne(&self, other: &FileSystemError) -> bool[src]
impl StructuralEq for FileSystemError[src]
impl StructuralPartialEq for FileSystemError[src]
Auto Trait Implementations
impl RefUnwindSafe for FileSystemError
impl Send for FileSystemError
impl Sync for FileSystemError
impl Unpin for FileSystemError
impl UnwindSafe for FileSystemError
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> SizedIPCBuffer for T[src]
fn size(&Self) -> usize[src]
fn is_cool(usize, usize) -> bool[src]
unsafe fn from_raw_parts<'a>(usize, usize) -> &'a T[src]
unsafe fn from_raw_parts_mut<'a>(usize, usize) -> &'a mut T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,