Skip to main content

DockerHealthChecker

Trait DockerHealthChecker 

Source
pub trait DockerHealthChecker {
    // Required methods
    fn wait_postgres(&mut self, host: &str, port: u16) -> Result<()>;
    fn wait_qdrant(&mut self, host: &str, port: u16) -> Result<()>;
    fn wait_falkordb(&mut self, host: &str, port: u16) -> Result<()>;
}

Required Methods§

Source

fn wait_postgres(&mut self, host: &str, port: u16) -> Result<()>

Source

fn wait_qdrant(&mut self, host: &str, port: u16) -> Result<()>

Source

fn wait_falkordb(&mut self, host: &str, port: u16) -> Result<()>

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§