[][src]Struct async_redis_session::RedisSessionStore

pub struct RedisSessionStore { /* fields omitted */ }

Implementations

impl RedisSessionStore[src]

pub fn from_client(client: Client) -> Self[src]

creates a redis store from an existing redis::Client

let client = redis::Client::open("redis://127.0.0.1").unwrap();
let store = RedisSessionStore::from_client(client);

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

creates a redis store from a redis::IntoConnectionInfo such as a String, &str, or Url

let store = RedisSessionStore::new("redis://127.0.0.1").unwrap();

pub fn with_prefix(self, prefix: impl AsRef<str>) -> Self[src]

sets a key prefix for this session store

let store = RedisSessionStore::new("redis://127.0.0.1").unwrap()
    .with_prefix("async-sessions/");
let client = redis::Client::open("redis://127.0.0.1").unwrap();
let store = RedisSessionStore::from_client(client)
    .with_prefix("async-sessions/");

pub async fn count<'_>(&'_ self) -> Result<usize>[src]

returns the number of sessions in this store

Trait Implementations

impl Clone for RedisSessionStore[src]

impl Debug for RedisSessionStore[src]

impl SessionStore for RedisSessionStore[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,