[][src]Trait liquid_error::ErrorClone

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

An error that can be cloned.

Required methods

fn clone_box(&self) -> Box<dyn ErrorClone>

Clone the error.

Loading content...

Implementors

impl<E> ErrorClone for E where
    E: Error + Clone + Send + Sync + 'static, 
[src]

Loading content...