pub trait ContainerFactory {
type Container: Container;
// Required method
fn create_container(&self) -> Self::Container;
}
pub trait ContainerFactory {
type Container: Container;
// Required method
fn create_container(&self) -> Self::Container;
}