Skip to main content

LocalSessionFactory

Trait LocalSessionFactory 

Source
pub trait LocalSessionFactory {
    // Required method
    fn local() -> Self;
}

Required Methods§

Source

fn local() -> Self

Dyn Compatibility§

This trait is not dyn compatible.

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

Implementors§

Source§

impl<SG, TG, E> LocalSessionFactory for SessionBuilder<SG, TG, E>
where SG: Storage, TG: Trigger, E: Executor,