Enum docker_api::opts::ContainerPruneFilter
source · pub enum ContainerPruneFilter {
Until(String),
UntilDate(DateTime<Utc>),
LabelKey(String),
Label(String, String),
}
Variants§
Until(String)
Prune containers created before this timestamp. The
UntilDate(DateTime<Utc>)
Available on crate feature
chrono
only.Prune containers created before this timestamp. Same as Until
but takes a datetime object.
LabelKey(String)
Label in the form of label=key
.
Label(String, String)
Label in the form of label=key=val
.