pub trait CloneBox {
    // Required method
    fn clone_box(&self) -> Box<dyn AppSender + Send + Sync>;
}

Required Methods§

source

fn clone_box(&self) -> Box<dyn AppSender + Send + Sync>

Implementors§

source§

impl<T> CloneBox for Twhere T: 'static + AppSender + Clone + Send + Sync,