pub type KeystoreResult<T> = Result<T, KeystoreError>;
Expand description

alias

Aliased Type§

enum KeystoreResult<T> {
    Ok(T),
    Err(KeystoreError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(KeystoreError)

Contains the error value