pub struct ContainerList {
pub containers: Vec<Container>,
}
Expand description
A wrapper object around a list of containers.
Fields§
§containers: Vec<Container>
Trait Implementations§
Source§impl Clone for ContainerList
impl Clone for ContainerList
Source§fn clone(&self) -> ContainerList
fn clone(&self) -> ContainerList
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 ContainerList
impl Debug for ContainerList
Source§impl Default for ContainerList
impl Default for ContainerList
Source§fn default() -> ContainerList
fn default() -> ContainerList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContainerList
impl<'de> Deserialize<'de> for ContainerList
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ContainerList
impl PartialEq for ContainerList
Source§impl Serialize for ContainerList
impl Serialize for ContainerList
impl StructuralPartialEq for ContainerList
Auto Trait Implementations§
impl Freeze for ContainerList
impl RefUnwindSafe for ContainerList
impl Send for ContainerList
impl Sync for ContainerList
impl Unpin for ContainerList
impl UnwindSafe for ContainerList
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