Enum safe_authenticator::AuthError
[−]
[src]
pub enum AuthError {
Unexpected(String),
CoreError(CoreError),
IoError(IoError),
NfsError(NfsError),
EncodeDecodeError,
IpcError(IpcError),
AccountContainersCreation(String),
}Authenticator errors
Variants
Unexpected(String)Unexpected - Probably a Logic error
CoreError(CoreError)Error from safe_core.
IoError(IoError)Input/output error
NfsError(NfsError)NFS error
EncodeDecodeErrorSerialisation error
IpcError(IpcError)IPC error
AccountContainersCreation(String)Failure during the creation of standard account containers.
Trait Implementations
impl Debug for AuthError[src]
impl Display for AuthError[src]
fn fmt(&self, formatter: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Into<IpcError> for AuthError[src]
impl<T: 'static> From<SendError<T>> for AuthError[src]
impl From<ConfigFileHandlerError> for AuthError[src]
fn from(error: ConfigFileHandlerError) -> AuthError[src]
Performs the conversion.
impl From<CoreError> for AuthError[src]
impl From<IpcError> for AuthError[src]
impl From<RecvError> for AuthError[src]
impl From<NulError> for AuthError[src]
impl From<IoError> for AuthError[src]
impl<'a> From<&'a str> for AuthError[src]
impl From<String> for AuthError[src]
impl From<NfsError> for AuthError[src]
impl From<SerialisationError> for AuthError[src]
fn from(_err: SerialisationError) -> AuthError[src]
Performs the conversion.
impl From<Utf8Error> for AuthError[src]
impl From<FromUtf8Error> for AuthError[src]
fn from(_err: FromUtf8Error) -> Self[src]
Performs the conversion.
impl From<StringError> for AuthError[src]
fn from(_err: StringError) -> Self[src]
Performs the conversion.
impl ErrorCode for AuthError[src]
fn error_code(&self) -> i32[src]
Return the error code corresponding to this instance.