podman-client 0.0.2

A native Rust client for the Podman REST API over Unix sockets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::models::podman::secrets::inspect::SecretInspect;

#[derive(Default)]
pub struct SecretListOptions<'a> {
    pub filters: Option<SecretListFiltersOptions<'a>>,
}

#[derive(Default)]
pub struct SecretListFiltersOptions<'a> {
    pub name: Option<Vec<&'a str>>,
    pub id: Option<Vec<&'a str>>,
}

pub type SecretList = Vec<SecretInspect>;