Struct aws_sdk_batch::types::builders::UlimitBuilder
source · #[non_exhaustive]pub struct UlimitBuilder { /* private fields */ }
Expand description
A builder for Ulimit
.
Implementations§
source§impl UlimitBuilder
impl UlimitBuilder
sourcepub fn hard_limit(self, input: i32) -> Self
pub fn hard_limit(self, input: i32) -> Self
The hard limit for the ulimit
type.
sourcepub fn set_hard_limit(self, input: Option<i32>) -> Self
pub fn set_hard_limit(self, input: Option<i32>) -> Self
The hard limit for the ulimit
type.
sourcepub fn get_hard_limit(&self) -> &Option<i32>
pub fn get_hard_limit(&self) -> &Option<i32>
The hard limit for the ulimit
type.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The type
of the ulimit
. Valid values are: core
| cpu
| data
| fsize
| locks
| memlock
| msgqueue
| nice
| nofile
| nproc
| rss
| rtprio
| rttime
| sigpending
| stack
.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The type
of the ulimit
. Valid values are: core
| cpu
| data
| fsize
| locks
| memlock
| msgqueue
| nice
| nofile
| nproc
| rss
| rtprio
| rttime
| sigpending
| stack
.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
The type
of the ulimit
. Valid values are: core
| cpu
| data
| fsize
| locks
| memlock
| msgqueue
| nice
| nofile
| nproc
| rss
| rtprio
| rttime
| sigpending
| stack
.
sourcepub fn soft_limit(self, input: i32) -> Self
pub fn soft_limit(self, input: i32) -> Self
The soft limit for the ulimit
type.
sourcepub fn set_soft_limit(self, input: Option<i32>) -> Self
pub fn set_soft_limit(self, input: Option<i32>) -> Self
The soft limit for the ulimit
type.
sourcepub fn get_soft_limit(&self) -> &Option<i32>
pub fn get_soft_limit(&self) -> &Option<i32>
The soft limit for the ulimit
type.
Trait Implementations§
source§impl Clone for UlimitBuilder
impl Clone for UlimitBuilder
source§fn clone(&self) -> UlimitBuilder
fn clone(&self) -> UlimitBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UlimitBuilder
impl Debug for UlimitBuilder
source§impl Default for UlimitBuilder
impl Default for UlimitBuilder
source§fn default() -> UlimitBuilder
fn default() -> UlimitBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UlimitBuilder
impl PartialEq for UlimitBuilder
source§fn eq(&self, other: &UlimitBuilder) -> bool
fn eq(&self, other: &UlimitBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UlimitBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UlimitBuilder
impl Send for UlimitBuilder
impl Sync for UlimitBuilder
impl Unpin for UlimitBuilder
impl UnwindSafe for UlimitBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.