podman_rest_client/v4/params/
system_events_libpod.rs

1#[derive(Default, Debug)]
2pub struct SystemEventsLibpod<'a> {
3    /// start streaming events from this time
4    pub since: Option<&'a str>,
5    /// stop streaming events later than this
6    pub until: Option<&'a str>,
7    /// JSON encoded map[string][]string of constraints
8    pub filters: Option<&'a str>,
9    /// when false, do not follow events
10    pub stream: Option<bool>,
11}