Skip to main content

ToBoxedClient

Trait ToBoxedClient 

Source
pub trait ToBoxedClient {
    // Required methods
    fn boxed(self) -> BoxClient;
    fn arced(self) -> ArcClient;
}

Required Methods§

Implementors§

Source§

impl<C> ToBoxedClient for C
where C: Client + IsConnectedCheck + 'static,