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.

Implementors