podman_rest_client/v5/params/image_search.rs
1#[derive(Default, Debug)]
2pub struct ImageSearch<'a> {
3    /// term to search
4    pub term: Option<&'a str>,
5    /// maximum number of results
6    pub limit: Option<i64>,
7    /// A JSON encoded value of the filters (a `map[string][]string`) to process on the images list. Available filters:
8    /// - `is-automated=(true|false)`
9    /// - `is-official=(true|false)`
10    /// - `stars=<number>` Matches images that have at least 'number' stars.
11    pub filters: Option<&'a str>,
12    /// Require HTTPS and verify signatures when contacting registries.
13    pub tls_verify: Option<bool>,
14    /// list the available tags in the repository
15    pub list_tags: Option<bool>,
16}