podman_rest_client/v4/params/
container_wait.rs

1#[derive(Default, Debug)]
2pub struct ContainerWait<'a> {
3    /// wait until container is to a given condition. default is stopped. valid conditions are:
4    ///   - configured
5    ///   - created
6    ///   - exited
7    ///   - paused
8    ///   - running
9    ///   - stopped
10    pub condition: Option<&'a str>,
11    /// Time Interval to wait before polling for completion.
12    pub interval: Option<&'a str>,
13}