pub type StorageResult<T> = Result<T, JwkStorageDocumentError>;
Expand description

Alias for a Result with the error type Error.

Aliased Type§

enum StorageResult<T> {
    Ok(T),
    Err(JwkStorageDocumentError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(JwkStorageDocumentError)

Contains the error value