Skip to main content

SessionStoreState

Trait SessionStoreState 

Source
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§

Source

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".

Implementors§