pub trait ParseFilterClone {
// Required method
fn clone_box(&self) -> Box<dyn ParseFilter>;
}Expand description
Support cloning of Box<ParseFilter>.
Required Methods§
Sourcefn clone_box(&self) -> Box<dyn ParseFilter>
fn clone_box(&self) -> Box<dyn ParseFilter>
Cloning of dyn ParseFilter.