podman_rest_client/v4/params/
volume_prune.rs

1#[derive(Default, Debug)]
2pub struct VolumePrune<'a> {
3    /// JSON encoded value of filters (a map[string][]string) to match volumes against before pruning.
4    /// Available filters:
5    ///   - `until=<timestamp>` Prune 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.
6    ///   - `label` (`label=<key>`, `label=<key>=<value>`, `label!=<key>`, or `label!=<key>=<value>`) Prune volumes with (or without, in case `label!=...` is used) the specified labels.
7    pub filters: Option<&'a str>,
8}