pub struct ResourcesUlimitsInlineItem {
pub hard: Option<isize>,
pub name: Option<String>,
pub soft: Option<isize>,
}
Fields
hard: Option<isize>
Hard limit
name: Option<String>
Name of ulimit
soft: Option<isize>
Soft limit
Trait Implementations
sourceimpl Clone for ResourcesUlimitsInlineItem
impl Clone for ResourcesUlimitsInlineItem
sourcefn clone(&self) -> ResourcesUlimitsInlineItem
fn clone(&self) -> ResourcesUlimitsInlineItem
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ResourcesUlimitsInlineItem
impl Debug for ResourcesUlimitsInlineItem
sourceimpl<'de> Deserialize<'de> for ResourcesUlimitsInlineItem
impl<'de> Deserialize<'de> for ResourcesUlimitsInlineItem
sourcefn 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
sourceimpl PartialEq<ResourcesUlimitsInlineItem> for ResourcesUlimitsInlineItem
impl PartialEq<ResourcesUlimitsInlineItem> for ResourcesUlimitsInlineItem
sourcefn eq(&self, other: &ResourcesUlimitsInlineItem) -> bool
fn eq(&self, other: &ResourcesUlimitsInlineItem) -> bool
impl StructuralPartialEq for ResourcesUlimitsInlineItem
Auto Trait Implementations
impl RefUnwindSafe for ResourcesUlimitsInlineItem
impl Send for ResourcesUlimitsInlineItem
impl Sync for ResourcesUlimitsInlineItem
impl Unpin for ResourcesUlimitsInlineItem
impl UnwindSafe for ResourcesUlimitsInlineItem
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more