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

pub enum NfsError {
    CoreError(CoreError),
    FileExists,
    FileNotFound,
    InvalidRange,
    Unexpected(String),
    EncodeDecodeError(SerialisationError),
    SelfEncryption(SelfEncryptionError<SelfEncryptionStorageError>),
}

NFS Errors

Variants

Client Error

File already exists with the same name in a directory

File not found

Invalid byte range specified

Unexpected error

Unsuccessful Serialisation or Deserialisation

Error while self-encrypting/-decrypting data

Trait Implementations

impl Display for NfsError
[src]

Formats the value using the given formatter. Read more

impl Debug for NfsError
[src]

Formats the value using the given formatter. Read more

impl From<SerialisationError> for NfsError
[src]

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

impl From<CoreError> for NfsError
[src]

Performs the conversion.

impl From<NfsError> for AppError
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for NfsError

impl !Sync for NfsError