podman_rest_client/v4/params/container_delete_libpod.rs
1#[derive(Default, Debug)]
2pub struct ContainerDeleteLibpod {
3 /// additionally remove containers that depend on the container to be removed
4 pub depend: Option<bool>,
5 /// force stop container if running
6 pub force: Option<bool>,
7 /// ignore errors when the container to be removed does not existxo
8 pub ignore: Option<bool>,
9 /// number of seconds to wait before killing container when force removing
10 pub timeout: Option<i64>,
11 /// delete volumes
12 pub v: Option<bool>,
13}