pub trait Neo4jRunnableImageExt: Sized {
    // Required method
    fn with_enterprise_edition(
        self
    ) -> Result<Self, Box<dyn Error + Sync + Send + 'static>>;
}
Expand description

Extension trait for RunnableImage<Neo4jImage> to allow the usage of Neo4j Enterprise Edition via Neo4jRunnableImageExt::with_enterprise_edition.

Required Methods§

source

fn with_enterprise_edition( self ) -> Result<Self, Box<dyn Error + Sync + Send + 'static>>

Use the enterprise edition of Neo4j.

§Note

Please have a look at the Neo4j Licensing page. While the Neo4j Community Edition can be used for free in your projects under the GPL v3 license, Neo4j Enterprise edition needs either a commercial, education or evaluation license.

Object Safety§

This trait is not object safe.

Implementors§