Skip to main content

HasSessionStore

Trait HasSessionStore 

Source
pub trait HasSessionStore {
    // Required method
    fn session_store(&self) -> Arc<dyn SessionStore>;
}
Expand description

Trait for Authkestra instances that have a session store configured.

Required Methods§

Source

fn session_store(&self) -> Arc<dyn SessionStore>

Returns the session store.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§