Trait dockertest::ContainerSpecification

source ·
pub trait ContainerSpecification: Sealed {
    // Required method
    fn into_composition(self) -> Composition;
}
Expand description

Implemented by types that can represent and instruct how dockertest should interact with a specific docker container.

Required Methods§

source

fn into_composition(self) -> Composition

Convert the specification of a container into a Composition.

The Composition type is an internal implementation detail.

Implementors§