CloneService

Trait CloneService 

Source
trait CloneService<R>: Service<R> {
    // Required method
    fn clone_box(
        &self,
    ) -> Box<dyn CloneService<R, Response = Self::Response, Error = Self::Error, Future = Self::Future> + Send>;
}

Required Methods§

Source

fn clone_box( &self, ) -> Box<dyn CloneService<R, Response = Self::Response, Error = Self::Error, Future = Self::Future> + Send>

Implementors§

Source§

impl<R, T> CloneService<R> for T
where T: Service<R> + Send + Clone + 'static,