pub struct InspectUlimit {
pub hard: Option<i64>,
pub name: Option<String>,
pub soft: Option<i64>,
}
Available on crate feature
v5
only.Expand description
InspectUlimit is a ulimit that will be applied to the container.
Fields§
§hard: Option<i64>
Hard is the hard limit that will be applied.
name: Option<String>
Name is the name (type) of the ulimit.
soft: Option<i64>
Soft is the soft limit that will be applied.
Trait Implementations§
Source§impl Debug for InspectUlimit
impl Debug for InspectUlimit
Source§impl Default for InspectUlimit
impl Default for InspectUlimit
Source§fn default() -> InspectUlimit
fn default() -> InspectUlimit
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InspectUlimit
impl<'de> Deserialize<'de> for InspectUlimit
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InspectUlimit
impl RefUnwindSafe for InspectUlimit
impl Send for InspectUlimit
impl Sync for InspectUlimit
impl Unpin for InspectUlimit
impl UnwindSafe for InspectUlimit
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more