Enum docker_api::opts::NetworkPruneFilter
source · pub enum NetworkPruneFilter {
Until(String),
UntilDate(DateTime<Utc>),
LabelKey(String),
Label(String, String),
}
Variants§
Until(String)
Prune networks created before this timestamp. The
UntilDate(DateTime<Utc>)
Available on crate feature
chrono
only.Prune networks 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
.