Struct sessions_core::Config [−][src]
Sessions Config
Fields
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]
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]
&'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,
Get a data from storage by the key
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]
&'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,
Set a data to storage by the key
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]
&'life0 self,
key: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
Remove a data from storage by the key
fn reset<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait, [src]
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Reset the storage and remove all keys
fn close<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait, [src]
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Close the connection
Auto Trait Implementations
impl !RefUnwindSafe for Config[src]
impl Send for Config[src]
impl Sync for Config[src]
impl Unpin for Config[src]
impl !UnwindSafe for Config[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,