podman_rest_client/v4/params/
secret_create_libpod.rs

1#[derive(Default, Debug)]
2pub struct SecretCreateLibpod<'a> {
3    /// User-defined name of the secret.
4    pub name: &'a str,
5    /// Secret driver
6    pub driver: Option<&'a str>,
7    /// Secret driver options
8    pub driveropts: Option<&'a str>,
9    /// Labels on the secret
10    pub labels: Option<&'a str>,
11}