podman_rest_client/v5/params/
container_delete.rs

1#[derive(Default, Debug)]
2pub struct ContainerDelete {
3    /// If the container is running, kill it before removing it.
4    pub force: Option<bool>,
5    /// Remove the volumes associated with the container.
6    pub v: Option<bool>,
7    /// not supported
8    pub link: Option<bool>,
9}