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
#[derive(Default, Debug)]
pub struct SecretCreateLibpod<'a> {
    /// User-defined name of the secret.
    pub name: &'a str,
    /// Secret driver
    pub driver: Option<&'a str>,
    /// Secret driver options
    pub driveropts: Option<&'a str>,
    /// Labels on the secret
    pub labels: Option<&'a str>,
}