pub struct Manager { /* private fields */ }
๐Deprecated since 0.1.1: The functionality of
redis_cluster_async
has been merged into the
redis
crate rendering this crate obsolete. Please use deadpool-redis
instead.Expand description
Manager
for creating and recycling redis_cluster_async
connections.
Implementationsยง
Sourceยงimpl Manager
impl Manager
Sourcepub fn new<T: IntoConnectionInfo>(params: Vec<T>) -> RedisResult<Self>
๐Deprecated since 0.1.1: The functionality of redis_cluster_async
has been merged into the
redis
crate rendering this crate obsolete. Please use deadpool-redis
instead.
pub fn new<T: IntoConnectionInfo>(params: Vec<T>) -> RedisResult<Self>
redis_cluster_async
has been merged into the
redis
crate rendering this crate obsolete. Please use deadpool-redis
instead.Trait Implementationsยง
Sourceยงimpl Manager for Manager
impl Manager for Manager
Sourceยง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, 'life2, 'async_trait>(
&'life0 self,
conn: &'life1 mut RedisConnection,
_: &'life2 Metrics,
) -> Pin<Box<dyn Future<Output = RecycleResult<RedisError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn recycle<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
conn: &'life1 mut RedisConnection,
_: &'life2 Metrics,
) -> Pin<Box<dyn Future<Output = RecycleResult<RedisError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Tries to recycle an instance of
Manager::Type
. Read moreAuto Trait Implementationsยง
impl !Freeze for Manager
impl RefUnwindSafe for Manager
impl Send for Manager
impl Sync for Manager
impl Unpin for Manager
impl UnwindSafe for Manager
Blanket Implementationsยง
Sourceยงimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Sourceยงfn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more