[][src]Struct sessions_core::Config

pub struct Config {
    pub cookie: CookieOptions,
    pub storage: Arc<dyn Storage>,
    pub generate: Box<dyn GenerateFn>,
    pub verify: Box<dyn VerifyFn>,
}

Sessions Config

Fields

cookie: CookieOptions

Cookie Options

storage: Arc<dyn Storage>

Current Storage

generate: Box<dyn GenerateFn>

Generates session id

verify: Box<dyn VerifyFn>

Verifes session id

Implementations

impl Config[src]

pub fn storage(&self) -> Arc<dyn Storage>[src]

Gets current storage

pub fn cookie(&self) -> &CookieOptions[src]

Gets cookie options

pub fn max_age(&self) -> Duration[src]

Gets cookie's max_age or session's expries

pub fn generate(&self) -> String[src]

Generates a session id

pub fn verify(&self, key: &str) -> bool[src]

Verifes a session id

Trait Implementations

impl Debug for Config[src]

impl Storage for Config[src]

pub fn get<'life0, 'life1, 'async_trait>(
    &'life0 self,
    key: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<Option<Data>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 
[src]

Get a data from storage by the key

pub fn set<'life0, 'life1, 'async_trait>(
    &'life0 self,
    key: &'life1 str,
    val: Data,
    exp: Duration
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 
[src]

Set a data to storage by the key

pub fn remove<'life0, 'life1, 'async_trait>(
    &'life0 self,
    key: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 
[src]

Remove a data from storage by the key

pub fn reset<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Reset the storage and remove all keys

pub fn close<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Close the connection

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, 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.