Struct atrium_cli::store::SimpleJsonFileSessionStore
source · pub struct SimpleJsonFileSessionStore<T = PathBuf>{ /* private fields */ }Implementations§
Trait Implementations§
source§impl<T> SessionStore for SimpleJsonFileSessionStore<T>
impl<T> SessionStore for SimpleJsonFileSessionStore<T>
fn get_session<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Option<Session>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn set_session<'life0, 'async_trait>(
&'life0 self,
session: Session
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn clear_session<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl<T> RefUnwindSafe for SimpleJsonFileSessionStore<T>where
T: RefUnwindSafe,
impl<T> Send for SimpleJsonFileSessionStore<T>where
T: Send,
impl<T> Sync for SimpleJsonFileSessionStore<T>where
T: Sync,
impl<T> Unpin for SimpleJsonFileSessionStore<T>where
T: Unpin,
impl<T> UnwindSafe for SimpleJsonFileSessionStore<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more