Struct deadpool_redis::cluster::Manager
source · pub struct Manager { /* private fields */ }
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>
pub fn new<T: IntoConnectionInfo>(params: Vec<T>) -> RedisResult<Self>
Trait Implementations§
source§impl Manager for Manager
impl Manager for Manager
§type Type = ClusterConnection
type Type = ClusterConnection
§type Error = RedisError
type Error = RedisError
source§async fn create(&self) -> Result<ClusterConnection, RedisError>
async fn create(&self) -> Result<ClusterConnection, RedisError>
Creates a new instance of
Manager::Type
.source§async fn recycle(
&self,
conn: &mut ClusterConnection,
_: &Metrics
) -> RecycleResult<RedisError>
async fn recycle( &self, conn: &mut ClusterConnection, _: &Metrics ) -> RecycleResult<RedisError>
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