pub trait SessionStoreState:
Send
+ Sync
+ Clone {
// Required method
fn get_store(&self) -> Arc<dyn SessionStore>;
}Expand description
Trait for the session store state in the Engine.
Required Methods§
Sourcefn get_store(&self) -> Arc<dyn SessionStore>
fn get_store(&self) -> Arc<dyn SessionStore>
Returns the session store if configured.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".