Struct bollard::container::ListContainersOptions
source · 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: bool
Return 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: bool
Return 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
=key
orlabel
="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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)