podman_rest_client/v4/params/
network_list.rs

1#[derive(Default, Debug)]
2pub struct NetworkList<'a> {
3    /// JSON encoded value of the filters (a `map[string][]string`) to process on the network list. Currently 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    pub filters: Option<&'a str>,
9}