Enum docker_api::api::container::opts::ContainerPruneFilter [−][src]
pub enum ContainerPruneFilter { Until(String), UntilDate(DateTime<Utc>), LabelKey(String), Label(String, String), }
Variants
Prune containers created before this timestamp. The
Tuple Fields of Until
0: String
This is supported on crate feature
chrono
only.Prune containers created before this timestamp. Same as Until
but takes a datetime object.
Label in the form of label=key
.
Tuple Fields of LabelKey
0: String
Label in the form of label=key=val
.