podman_rest_client/v4/params/
container_wait_libpod.rs

1#[derive(Default, Debug)]
2pub struct ContainerWaitLibpod<'a> {
3    /// Conditions to wait for. If no condition provided the 'exited' condition is assumed.
4    pub condition: Option<Vec<&'a str>>,
5    /// Time Interval to wait before polling for completion.
6    pub interval: Option<&'a str>,
7}