Trait liquid_interpreter::FilterValueClone [−][src]
pub trait FilterValueClone {
fn clone_box(&self) -> Box<FilterValue>;
}Support cloning of Box<FilterValue>.
Required Methods
fn clone_box(&self) -> Box<FilterValue>
Cloning of dyn FilterValue.
Implementors
impl<T> FilterValueClone for T where
T: 'static + FilterValue + Clone,