Trait GenericConnector

Source
pub trait GenericConnector:
    Service<Uri, Response = BoxConn, Error = Box<dyn StdError + Send + Sync>, Future = GenericConnectionFut>
    + Send
    + Sync
    + 'static { }
Expand description

Trait representing a generic custom connector for the client.

Implementors§

Source§

impl<T> GenericConnector for T
where T: Service<Uri, Response = BoxConn, Error = Box<dyn StdError + Send + Sync>, Future = GenericConnectionFut> + Send + Sync + 'static,