Struct bb8_redis::RedisConnectionManager
source · pub struct RedisConnectionManager { /* private fields */ }Expand description
A bb8::ManageConnection for redis::Client::get_async_connection.
Implementations§
source§impl RedisConnectionManager
impl RedisConnectionManager
sourcepub fn new<T: IntoConnectionInfo>(
info: T
) -> Result<RedisConnectionManager, RedisError>
pub fn new<T: IntoConnectionInfo>( info: T ) -> Result<RedisConnectionManager, RedisError>
Create a new RedisConnectionManager.
See redis::Client::open for a description of the parameter types.
Trait Implementations§
source§impl Clone for RedisConnectionManager
impl Clone for RedisConnectionManager
source§fn clone(&self) -> RedisConnectionManager
fn clone(&self) -> RedisConnectionManager
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for RedisConnectionManager
impl Debug for RedisConnectionManager
source§impl ManageConnection for RedisConnectionManager
impl ManageConnection for RedisConnectionManager
§type Connection = Connection<Pin<Box<dyn AsyncStream + Send + Sync + 'static, Global>>>
type Connection = Connection<Pin<Box<dyn AsyncStream + Send + Sync + 'static, Global>>>
The connection type this manager deals with.
§type Error = RedisError
type Error = RedisError
The error type returned by
Connections.source§fn connect<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<Self::Connection, Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn connect<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<Self::Connection, Self::Error>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
Attempts to create a new connection.
source§fn is_valid<'life0, 'life1, 'async_trait>(
&'life0 self,
conn: &'life1 mut Self::Connection
) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn is_valid<'life0, 'life1, 'async_trait>( &'life0 self, conn: &'life1 mut Self::Connection ) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,
Determines if the connection is still connected to the database.
source§fn has_broken(&self, _: &mut Self::Connection) -> bool
fn has_broken(&self, _: &mut Self::Connection) -> bool
Synchronously determine if the connection is no longer usable, if possible.