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
Source§type Type = MultiplexedConnection
type Type = MultiplexedConnection
Type of
super::Objects that this Manager creates and recycles.Source§type Error = RedisError
type Error = RedisError
Error that this
Manager can return when creating and/or recycling
super::Objects.Source§async fn create(&self) -> Result<MultiplexedConnection, RedisError>
async fn create(&self) -> Result<MultiplexedConnection, RedisError>
Creates a new instance of
Manager::Type.Source§async fn recycle(
&self,
conn: &mut MultiplexedConnection,
_: &Metrics,
) -> RecycleResult<RedisError>
async fn recycle( &self, conn: &mut MultiplexedConnection, _: &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