BoxClientT

Trait BoxClientT 

Source
pub trait BoxClientT<Err>: Client<Error = Err, Stream = Pin<Box<dyn Stream<Item = Result<Bytes, Err>> + Send>>> + IsConnectedCheck { }

Implementors§

Source§

impl<T, Err> BoxClientT<Err> for T
where T: ?Sized + IsConnectedCheck + Client<Error = Err, Stream = Pin<Box<dyn Stream<Item = Result<Bytes, Err>> + Send>>>,