[][src]Trait liquid::compiler::FilterValueClone

pub trait FilterValueClone {
    fn clone_box(&self) -> Box<dyn FilterValue + 'static>;
}

Support cloning of Box<FilterValue>.

Required methods

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

Cloning of dyn FilterValue.

Loading content...

Implementors

impl<T> FilterValueClone for T where
    T: 'static + FilterValue + Clone
[src]

Loading content...