Enum psa_crypto::types::status::Error[][src]

pub enum Error {
Show 21 variants GenericError, NotSupported, NotPermitted, BufferTooSmall, AlreadyExists, DoesNotExist, BadState, InvalidArgument, InsufficientMemory, InsufficientStorage, CommunicationFailure, StorageFailure, DataCorrupt, DataInvalid, HardwareFailure, CorruptionDetected, InsufficientEntropy, InvalidSignature, InvalidPadding, InsufficientData, InvalidHandle,
}
Expand description

Definition of a PSA status code

Variants

GenericError

An error occurred that does not correspond to any defined failure cause

NotSupported

The requested operation or a parameter is not supported by this implementation

NotPermitted

The requested action is denied by a policy

BufferTooSmall

An output buffer is too small

AlreadyExists

Asking for an item that already exists

DoesNotExist

Asking for an item that doesn’t exist

BadState

The requested action cannot be performed in the current state

InvalidArgument

The parameters passed to the function are invalid

InsufficientMemory

There is not enough runtime memory

InsufficientStorage

There is not enough persistent storage

CommunicationFailure

There was a communication failure inside the implementation

StorageFailure

There was a storage failure that may have led to data loss

DataCorrupt

Stored data has been corrupted

DataInvalid

Data read from storage is not valid for the implementation

HardwareFailure

A hardware failure was detected

CorruptionDetected

A tampering attempt was detected

InsufficientEntropy

There is not enough entropy to generate random data needed for the requested action

InvalidSignature

The signature, MAC or hash is incorrect

InvalidPadding

The decrypted padding is incorrect

InsufficientData

Insufficient data when attempting to read from a resource

InvalidHandle

The key handle is not valid

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Performs the conversion.

Performs the conversion.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Zero out this object from memory using Rust intrinsics which ensure the zeroization operation is not “optimized away” by the compiler. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.