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
12
13
14
use serde::{Deserialize, Serialize};
#[derive(Default, Debug, Serialize, Deserialize)]
/// InspectUlimit is a ulimit that will be applied to the container.
pub struct InspectUlimit {
    /// Hard is the hard limit that will be applied.
    #[serde(rename = "Hard")]
    pub hard: Option<i64>,
    /// Name is the name (type) of the ulimit.
    #[serde(rename = "Name")]
    pub name: Option<String>,
    /// Soft is the soft limit that will be applied.
    #[serde(rename = "Soft")]
    pub soft: Option<i64>,
}