pub struct ListPodsReport {
pub cgroup: Option<String>,
pub containers: Option<Vec<ListPodContainer>>,
pub created: Option<DateTime<Utc>>,
pub id: Option<String>,
pub infra_id: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub name: Option<String>,
pub namespace: Option<String>,
pub networks: Option<Vec<String>>,
pub status: Option<String>,
}
Fields§
§cgroup: Option<String>
§containers: Option<Vec<ListPodContainer>>
§created: Option<DateTime<Utc>>
§id: Option<String>
§infra_id: Option<String>
§labels: Option<HashMap<String, String>>
§name: Option<String>
§namespace: Option<String>
§networks: Option<Vec<String>>
Network names connected to infra container
status: Option<String>
Trait Implementations§
Source§impl Clone for ListPodsReport
impl Clone for ListPodsReport
Source§fn clone(&self) -> ListPodsReport
fn clone(&self) -> ListPodsReport
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ListPodsReport
impl Debug for ListPodsReport
Source§impl<'de> Deserialize<'de> for ListPodsReport
impl<'de> Deserialize<'de> for ListPodsReport
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ListPodsReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ListPodsReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListPodsReport
impl PartialEq for ListPodsReport
Source§impl Serialize for ListPodsReport
impl Serialize for ListPodsReport
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 ListPodsReport
Auto Trait Implementations§
impl Freeze for ListPodsReport
impl RefUnwindSafe for ListPodsReport
impl Send for ListPodsReport
impl Sync for ListPodsReport
impl Unpin for ListPodsReport
impl UnwindSafe for ListPodsReport
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