podman_rest_client/v4/params/
network_list_libpod.rs

1#[derive(Default, Debug)]
2pub struct NetworkListLibpod<'a> {
3    /// JSON encoded value of the filters (a `map[string][]string`) to process on the network list. Available filters:
4    ///   - `name=[name]` Matches network name (accepts regex).
5    ///   - `id=[id]` Matches for full or partial ID.
6    ///   - `driver=[driver]` Only bridge is supported.
7    ///   - `label=[key]` or `label=[key=value]` Matches networks based on the presence of a label alone or a label and a value.
8    ///   - `until=[timestamp]` Matches all networks that were created before the given timestamp.
9    pub filters: Option<&'a str>,
10}