podman_rest_client/v4/params/
volume_list_libpod.rs

1#[derive(Default, Debug)]
2pub struct VolumeListLibpod<'a> {
3    /// JSON encoded value of the filters (a map[string][]string) to process on the volumes list. Available filters:
4    ///   - driver=<volume-driver-name> Matches volumes based on their driver.
5    ///   - label=<key> or label=<key>:<value> Matches volumes based on the presence of a label alone or a label and a value.
6    ///   - name=<volume-name> Matches all of volume name.
7    ///   - opt=<driver-option> Matches a storage driver options
8    ///   - `until=<timestamp>` List volumes created before this timestamp. The `<timestamp>` can be Unix timestamps, date formatted timestamps, or Go duration strings (e.g. `10m`, `1h30m`) computed relative to the daemon machine’s time.
9    pub filters: Option<&'a str>,
10}