Enum docker_api::api::container::opts::ContainerPruneFilter [−][src]
pub enum ContainerPruneFilter {
Until(String),
UntilDate(DateTime<Utc>),
LabelKey(String),
Label(String, String),
}Variants
Until(String)
Tuple Fields
0: StringPrune containers created before this timestamp. The
UntilDate(DateTime<Utc>)
This is supported on crate feature
chrono only.Prune containers created before this timestamp. Same as Until but takes a datetime object.
LabelKey(String)
Tuple Fields
0: StringLabel in the form of label=key.
Label(String, String)
Label in the form of label=key=val.
Auto Trait Implementations
impl RefUnwindSafe for ContainerPruneFilter
impl Send for ContainerPruneFilter
impl Sync for ContainerPruneFilter
impl Unpin for ContainerPruneFilter
impl UnwindSafe for ContainerPruneFilter
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more