podman_rest_client/v5/models/container_top_ok_body.rs
1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// ContainerTopOKBody OK response to ContainerTop operation
4pub struct ContainerTopOkBody {
5 /// Each process running in the container, where each is process
6 /// is an array of values corresponding to the titles.
7 #[serde(rename = "Processes")]
8 pub processes: Vec<Vec<String>>,
9 /// The ps column titles
10 #[serde(rename = "Titles")]
11 pub titles: Vec<String>,
12}