podman_rest_client/v5/models/inspect_pod_container_info.rs
1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// InspectPodContainerInfo contains information on a container in a pod.
4pub struct InspectPodContainerInfo {
5 /// ID is the ID of the container.
6 #[serde(rename = "Id")]
7 pub id: Option<String>,
8 /// Name is the name of the container.
9 #[serde(rename = "Name")]
10 pub name: Option<String>,
11 /// State is the current status of the container.
12 #[serde(rename = "State")]
13 pub state: Option<String>,
14}