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