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§
Sourcefn session_store(&self) -> Arc<dyn SessionStore>
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".