pub struct ListPodsReport {
pub cgroup: Option<String>,
pub containers: Option<Vec<ListPodContainer>>,
pub created: Option<String>,
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>,
}Available on crate feature
v5 only.Fields§
§cgroup: Option<String>§containers: Option<Vec<ListPodContainer>>§created: Option<String>§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 Debug for ListPodsReport
impl Debug for ListPodsReport
Source§impl Default for ListPodsReport
impl Default for ListPodsReport
Source§fn default() -> ListPodsReport
fn default() -> ListPodsReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListPodsReport
impl<'de> Deserialize<'de> for ListPodsReport
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
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