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
14
15
16
#[derive(Default, Debug)]
pub struct ImageSearchLibpod<'a> {
    /// term to search
    pub term: Option<&'a str>,
    /// maximum number of results
    pub limit: Option<i64>,
    /// A JSON encoded value of the filters (a `map[string][]string`) to process on the images list. Available filters:
    /// - `is-automated=(true|false)`
    /// - `is-official=(true|false)`
    /// - `stars=<number>` Matches images that have at least 'number' stars.
    pub filters: Option<&'a str>,
    /// Require HTTPS and verify signatures when contacting registries.
    pub tls_verify: Option<bool>,
    /// list the available tags in the repository
    pub list_tags: Option<bool>,
}