podman_rest_client/v5/models/
inspect_ulimit.rs

1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// InspectUlimit is a ulimit that will be applied to the container.
4pub struct InspectUlimit {
5    /// Hard is the hard limit that will be applied.
6    #[serde(rename = "Hard")]
7    pub hard: Option<i64>,
8    /// Name is the name (type) of the ulimit.
9    #[serde(rename = "Name")]
10    pub name: Option<String>,
11    /// Soft is the soft limit that will be applied.
12    #[serde(rename = "Soft")]
13    pub soft: Option<i64>,
14}