[][src]Trait liquid::error::ErrorClone

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

An error that can be cloned.

Required methods

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

Clone the error.

Loading content...

Implementors

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

Loading content...