pub struct ListContainersOptions<T>{
pub all: bool,
pub limit: Option<isize>,
pub size: bool,
pub filters: HashMap<T, Vec<T>>,
}Expand description
Parameters used in the List Container API
§Examples
use bollard::container::ListContainersOptions;
use std::collections::HashMap;
use std::default::Default;
let mut filters = HashMap::new();
filters.insert("health", vec!["unhealthy"]);
ListContainersOptions{
all: true,
filters,
..Default::default()
};ListContainersOptions::<String>{
..Default::default()
};Fields§
§all: boolReturn all containers. By default, only running containers are shown
limit: Option<isize>Return this number of most recently created containers, including non-running ones
size: boolReturn the size of container as fields SizeRw and SizeRootFs
filters: HashMap<T, Vec<T>>Filters to process on the container list, encoded as JSON. Available filters:
ancestor=(<image-name>[:<tag>],<image id>, or<image@digest>)before=(<container id>or<container name>)expose=(<port>[/<proto>]|<startport-endport>/[<proto>])exited=<int>containers with exit code of<int>health=(starting|healthy|unhealthy|none)id=<ID>a container’s IDisolation=(default|process|hyperv) (Windows daemon only)is-task=(true|false)label=keyorlabel="key=value"of a container labelname=<name>a container’s namenetwork=(<network id>or<network name>)publish=(<port>[/<proto>]|<startport-endport>/[<proto>])since=(<container id>or<container name>)status=(created|restarting|running|removing|paused|exited|dead)volume=(<volume name>or<mount point destination>)
Trait Implementations§
Source§impl<T> Clone for ListContainersOptions<T>
impl<T> Clone for ListContainersOptions<T>
Source§fn clone(&self) -> ListContainersOptions<T>
fn clone(&self) -> ListContainersOptions<T>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T> Debug for ListContainersOptions<T>
impl<T> Debug for ListContainersOptions<T>
Source§impl<T> Default for ListContainersOptions<T>
impl<T> Default for ListContainersOptions<T>
Source§fn default() -> ListContainersOptions<T>
fn default() -> ListContainersOptions<T>
Returns the “default value” for a type. Read more
Source§impl<T> PartialEq for ListContainersOptions<T>
impl<T> PartialEq for ListContainersOptions<T>
Source§impl<T> Serialize for ListContainersOptions<T>
impl<T> Serialize for ListContainersOptions<T>
impl<T> StructuralPartialEq for ListContainersOptions<T>
Auto Trait Implementations§
impl<T> Freeze for ListContainersOptions<T>
impl<T> RefUnwindSafe for ListContainersOptions<T>where
T: RefUnwindSafe,
impl<T> Send for ListContainersOptions<T>where
T: Send,
impl<T> Sync for ListContainersOptions<T>where
T: Sync,
impl<T> Unpin for ListContainersOptions<T>where
T: Unpin,
impl<T> UnwindSafe for ListContainersOptions<T>where
T: UnwindSafe,
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