Struct rustix::process::Rlimit
pub struct Rlimit {
pub current: Option<u64>,
pub maximum: Option<u64>,
}
Fields
pub current: Option<u64>
Current effective, “soft”, limit.
pub maximum: Option<u64>
Maximum, “hard”, value that current
may be dynamically increased to.
Trait Implementations
impl Debug for Rlimit
fn fmt(&Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl StructuralEq for Rlimit
impl StructuralPartialEq for Rlimit
Auto Trait Implementations
impl RefUnwindSafe for Rlimit
impl UnwindSafe for Rlimit
Blanket Implementations
impl<T> BorrowMut<T> for T
where
T: ?Sized,
where
T: ?Sized,
fn borrow_mut(&mut Self) -> &mut T