pub trait KeystoreError: HasKind + StdError + DynClone + Debug + Display + Send + Sync + 'static {
    // Provided method
    fn boxed(self) -> Box<Self>
       where Self: Sized { ... }
}
Expand description

An error returned by a Keystore.

Provided Methods§

source

fn boxed(self) -> Box<Self>where Self: Sized,

Return a boxed version of this error.

Implementations on Foreign Types§

source§

impl KeystoreError for Bug

Implementors§