[][src]Struct tokio_redis_pool::RedisManager

pub struct RedisManager { /* fields omitted */ }

Manages the lifecycle of connections to a single Redis server.

Methods

impl RedisManager[src]

pub fn new(params: impl IntoConnectionInfo) -> RedisResult<Self>[src]

Creates a new RedisManager from anything that can be converted to a ConnectionInfo.

Example

let manager = RedisManager::new("redis://127.0.0.1:6379")?;

Trait Implementations

impl Manage for RedisManager[src]

type Resource = Connection

type Dependencies = RealDependencies

type CheckOut = RedisCheckOut

type Error = RedisError

type CreateFuture = Box<dyn Future<Item = Self::Resource, Error = Self::Error> + Send>

type RecycleFuture = RecycleFuture

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T