podman_rest_client/v5/models/
pod_top_ok_body.rs

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