Module dockertest::waitfor
source · Expand description
Contains WaitFor
trait used to determine when a PendingContainer has started
and all the default implementations of it.
Structs§
- The ExitedWait
WaitFor
implementation for containers. This variant will wait until the docker daemon reports that the container has exited. - The MessageWait
WaitFor
implementation for containers. This variant will wait until the message appears in the requested source. - The NoWait
WaitFor
implementation for containers. This variant does not wait for anything, resolves immediately. - The RunningWait
WaitFor
implementation for containers. This variant will wait until the docker daemon reports the container as running.
Enums§
- The various sources to listen for a message on. Used by
MessageWait
.
Traits§
- Trait to wait for a container to be ready for service.