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§
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<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".