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.

Trait Implementations§

source§

impl<'clone> Clone for Box<dyn KeystoreError + 'clone>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'clone> Clone for Box<dyn KeystoreError + Send + 'clone>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'clone> Clone for Box<dyn KeystoreError + Send + Sync + 'clone>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'clone> Clone for Box<dyn KeystoreError + Sync + 'clone>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Implementations on Foreign Types§

source§

impl KeystoreError for Bug

Implementors§