Trait ParseTagClone

Source
pub trait ParseTagClone {
    // Required method
    fn clone_box(&self) -> Box<dyn ParseTag>;
}

Required Methods§

Source

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

Implementors§

Source§

impl<T> ParseTagClone for T
where T: 'static + ParseTag + Clone,