podman_rest_client/v4/params/
containers_stats_all_libpod.rs

1#[derive(Default, Debug)]
2pub struct ContainersStatsAllLibpod<'a> {
3    /// names or IDs of containers
4    pub containers: Option<Vec<&'a str>>,
5    /// Stream the output
6    pub stream: Option<bool>,
7    /// Time in seconds between stats reports
8    pub interval: Option<i64>,
9}