podman_rest_client/v5/params/container_top_libpod.rs
1#[derive(Default, Debug)]
2pub struct ContainerTopLibpod<'a> {
3    /// when true, repeatedly stream the latest output (As of version 4.0)
4    pub stream: Option<bool>,
5    /// if streaming, delay in seconds between updates. Must be >1. (As of version 4.0)
6    pub delay: Option<i64>,
7    /// arguments to pass to ps such as aux.
8    pub ps_args: Option<Vec<&'a str>>,
9}