Trait volo_build::ClonePlugin

source ·
pub trait ClonePlugin: Plugin {
    // Required method
    fn clone_box(&self) -> Box<dyn ClonePlugin>;
}

Required Methods§

source

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

Implementors§

source§

impl<T> ClonePlugin for T
where T: Plugin + Clone + 'static,