podman-rest-client 0.13.0

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