Trait ParseFilterClone

Source
pub trait ParseFilterClone {
    // Required method
    fn clone_box(&self) -> Box<dyn ParseFilter>;
}
Expand description

Support cloning of Box<ParseFilter>.

Required Methods§

Source

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

Cloning of dyn ParseFilter.

Implementors§

Source§

impl<T> ParseFilterClone for T
where T: 'static + ParseFilter + Clone,