GlobalClone

Trait GlobalClone 

Source
pub trait GlobalClone {
    // Required method
    fn clone_global(&self) -> Box<dyn Global>;
}

Required Methods§

Source

fn clone_global(&self) -> Box<dyn Global>

Implementors§

Source§

impl<T> GlobalClone for T
where T: 'static + Global + Clone,