pub struct VolumeListLibpod<'a> {
    pub filters: Option<&'a str>,
}Available on crate feature 
v5 only.Fields§
§filters: Option<&'a str>JSON encoded value of the filters (a map[string][]string) to process on the volumes list. Available filters:
- driver=Matches volumes based on their driver. 
- label=or label= : Matches volumes based on the presence of a label alone or a label and a value. 
- name=Matches all of volume name. 
- opt=Matches a storage driver options 
- 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.
Trait Implementations§
Source§impl<'a> Debug for VolumeListLibpod<'a>
 
impl<'a> Debug for VolumeListLibpod<'a>
Source§impl<'a> Default for VolumeListLibpod<'a>
 
impl<'a> Default for VolumeListLibpod<'a>
Source§fn default() -> VolumeListLibpod<'a>
 
fn default() -> VolumeListLibpod<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for VolumeListLibpod<'a>
impl<'a> RefUnwindSafe for VolumeListLibpod<'a>
impl<'a> Send for VolumeListLibpod<'a>
impl<'a> Sync for VolumeListLibpod<'a>
impl<'a> Unpin for VolumeListLibpod<'a>
impl<'a> UnwindSafe for VolumeListLibpod<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more