Struct deadpool_redis::Manager
source · pub struct Manager { /* private fields */ }
Implementations§
source§impl Manager
impl Manager
sourcepub fn new<T: IntoConnectionInfo>(params: T) -> RedisResult<Self>
pub fn new<T: IntoConnectionInfo>(params: T) -> RedisResult<Self>
Trait Implementations§
source§impl Manager for Manager
impl Manager for Manager
§type Type = Connection<Pin<Box<dyn AsyncStream + Send + Sync + 'static, Global>>>
type Type = Connection<Pin<Box<dyn AsyncStream + Send + Sync + 'static, Global>>>
§type Error = RedisError
type Error = RedisError
source§fn create<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<RedisConnection, RedisError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn create<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<RedisConnection, RedisError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Creates a new instance of
Manager::Type
.source§fn recycle<'life0, 'life1, 'async_trait>(
&'life0 self,
conn: &'life1 mut RedisConnection
) -> Pin<Box<dyn Future<Output = RecycleResult<RedisError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn recycle<'life0, 'life1, 'async_trait>(
&'life0 self,
conn: &'life1 mut RedisConnection
) -> Pin<Box<dyn Future<Output = RecycleResult<RedisError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Tries to recycle an instance of
Manager::Type
. Read more