[][src]Trait liquid_compiler::ParseFilterClone

pub trait ParseFilterClone {
    fn clone_box(&self) -> Box<dyn ParseFilter>;
}

Support cloning of Box<ParseFilter>.

Required methods

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

Cloning of dyn ParseFilter.

Loading content...

Implementors

impl<T> ParseFilterClone for T where
    T: 'static + ParseFilter + Clone
[src]

Loading content...