pub struct PodListItem {
pub cgroup: String,
pub containers: Vec<PodListItemContainer>,
pub created: DateTime<Utc>,
pub id: String,
pub infra_id: String,
pub labels: HashMap<String, String>,
pub name: String,
pub namespace: String,
pub networks: Vec<String>,
pub status: String,
}
Fields§
§cgroup: String
§containers: Vec<PodListItemContainer>
§created: DateTime<Utc>
§id: String
§infra_id: String
§labels: HashMap<String, String>
§name: String
§namespace: String
§networks: Vec<String>
§status: String
Trait Implementations§
Source§impl Debug for PodListItem
impl Debug for PodListItem
Source§impl<'de> Deserialize<'de> for PodListItem
impl<'de> Deserialize<'de> for PodListItem
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 PodListItem
impl RefUnwindSafe for PodListItem
impl Send for PodListItem
impl Sync for PodListItem
impl Unpin for PodListItem
impl UnwindSafe for PodListItem
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