[][src]Enum safe_app::nfs::NfsError

pub enum NfsError {
    CoreError(CoreError),
    FileExists,
    FileNotFound,
    InvalidRange,
    Unexpected(String),
    EncodeDecodeError(Box<ErrorKind>),
    SelfEncryption(SelfEncryptionError<SEStorageError>),
}

NFS Errors

Variants

CoreError(CoreError)

Client Error

FileExists

File already exists with the same name in a directory

FileNotFound

File not found

InvalidRange

Invalid byte range specified

Unexpected(String)

Unexpected error

EncodeDecodeError(Box<ErrorKind>)

Unsuccessful Serialisation or Deserialisation

Error while self-encrypting/-decrypting data

Trait Implementations

impl Debug for NfsError[src]

impl Display for NfsError[src]

impl<'a> From<&'a str> for NfsError[src]

impl From<Box<ErrorKind>> for NfsError[src]

impl From<CoreError> for NfsError[src]

impl From<NfsError> for AppError[src]

impl From<SelfEncryptionError<SEStorageError>> for NfsError[src]

Auto Trait Implementations

impl !RefUnwindSafe for NfsError

impl Send for NfsError

impl Sync for NfsError

impl Unpin for NfsError

impl !UnwindSafe for NfsError

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DebugAny for T where
    T: Any + Debug

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,