pub trait ErrorClone: Error + Send + Sync + 'static {
    fn clone_box(&self) -> Box<dyn ErrorClone>;
}
Expand description

An error that can be cloned.

Required Methods§

Clone the error.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Implementors§