pub struct ListContainersOptions {
pub all: bool,
pub limit: Option<i32>,
pub size: bool,
pub filters: Option<HashMap<String, Vec<String>>>,
}Expand description
Internal struct used in the ContainerList API
Use a ListContainersOptionsBuilder to instantiate this struct.
Fields§
§all: bool§limit: Option<i32>§size: bool§filters: Option<HashMap<String, Vec<String>>>Trait Implementations§
Source§impl Clone for ListContainersOptions
impl Clone for ListContainersOptions
Source§fn clone(&self) -> ListContainersOptions
fn clone(&self) -> ListContainersOptions
Returns a duplicate 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 Debug for ListContainersOptions
impl Debug for ListContainersOptions
Source§impl Default for ListContainersOptions
impl Default for ListContainersOptions
Source§fn default() -> ListContainersOptions
fn default() -> ListContainersOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListContainersOptions
impl PartialEq for ListContainersOptions
Source§impl Serialize for ListContainersOptions
impl Serialize for ListContainersOptions
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ListContainersOptions
Auto Trait Implementations§
impl Freeze for ListContainersOptions
impl RefUnwindSafe for ListContainersOptions
impl Send for ListContainersOptions
impl Sync for ListContainersOptions
impl Unpin for ListContainersOptions
impl UnsafeUnpin for ListContainersOptions
impl UnwindSafe for ListContainersOptions
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