podman-rest-client 0.13.0

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