Enum dpdk_unix::android_linux::resourceLimits::ResourceLimit
[−]
[src]
pub enum ResourceLimit { Finite(u64), Infinite, }
Variants
Finite(u64)
Infinite
Methods
impl ResourceLimit
[src]
const Infinity: rlim64_t
Infinity: rlim64_t = ::libc::RLIM_INFINITY as rlim64_t
fn maximumNumberOfFileDescriptors(
procPath: &Path
) -> Result<ResourceLimit, Error>
procPath: &Path
) -> Result<ResourceLimit, Error>
fn value(&self) -> u64
fn convert(value: rlim64_t) -> ResourceLimit
fn unwrap(&self) -> rlim64_t
fn isFinite(&self) -> bool
fn isInfinite(&self) -> bool
Trait Implementations
impl Debug for ResourceLimit
[src]
impl Copy for ResourceLimit
[src]
impl Clone for ResourceLimit
[src]
fn clone(&self) -> ResourceLimit
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl PartialEq for ResourceLimit
[src]
fn eq(&self, __arg_0: &ResourceLimit) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ResourceLimit) -> bool
This method tests for !=
.
impl Eq for ResourceLimit
[src]
impl PartialOrd for ResourceLimit
[src]
fn partial_cmp(&self, __arg_0: &ResourceLimit) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, __arg_0: &ResourceLimit) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, __arg_0: &ResourceLimit) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, __arg_0: &ResourceLimit) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, __arg_0: &ResourceLimit) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Ord for ResourceLimit
[src]
fn cmp(&self, __arg_0: &ResourceLimit) -> Ordering
This method returns an Ordering
between self
and other
. Read more