pub trait Connector<S>: Connector<In = <S as Service>::Res, Out = <S as Service>::Req>where
S: Service,{ }Expand description
A connector to a specific service
This is just a trait alias for a transport::Connector with the right types. It is used
to make it easier to specify the bounds of a connector that matches a specific
service.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.