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
10
11
#[derive(Default, Debug)]
pub struct SystemEventsLibpod<'a> {
    /// start streaming events from this time
    pub since: Option<&'a str>,
    /// stop streaming events later than this
    pub until: Option<&'a str>,
    /// JSON encoded map[string][]string of constraints
    pub filters: Option<&'a str>,
    /// when false, do not follow events
    pub stream: Option<bool>,
}