pub trait Connect: Sized {
// Required method
fn connect<'a, T>(info: T) -> RedisFuture<'a, Self>
where T: IntoConnectionInfo + Send + 'a;
}Required Methods§
fn connect<'a, T>(info: T) -> RedisFuture<'a, Self>where
T: IntoConnectionInfo + Send + 'a,
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.