podman_rest_client/v5/params/container_update_libpod.rs
1#[derive(Default, Debug)]
2pub struct ContainerUpdateLibpod<'a> {
3 /// New restart policy for the container.
4 pub restart_policy: Option<&'a str>,
5 /// New amount of retries for the container's restart policy. Only allowed if restartPolicy is set to on-failure
6 pub restart_retries: Option<i64>,
7}