ContainerState
Container::State() casts directly from WslcContainerState.
Underlying C values:
Invalid = 0Created = 1Running = 2Exited = 3Deleted = 4
auto state = container.State();
if (state == static_cast<ContainerState>(2))
{
// running
}