podman_client/models/podman/volumes/
list.rs

1use crate::models::podman::volumes::inspect::VolumeInspect;
2
3#[derive(Default)]
4pub struct VolumeListOptions<'a> {
5    pub filters: Option<VolumeListFiltersOptions<'a>>,
6}
7
8#[derive(Default)]
9pub struct VolumeListFiltersOptions<'a> {
10    pub driver: Option<Vec<&'a str>>,
11    pub label: Option<Vec<&'a str>>,
12    pub name: Option<Vec<&'a str>>,
13    pub opt: Option<Vec<&'a str>>,
14    pub until: Option<Vec<&'a str>>,
15}
16
17pub type VolumeList = Vec<VolumeInspect>;