pub struct RLimitVals {
    pub current: u64,
    pub max: u64,
}Expand description
Holder for setting or getting rlimits (get/setrlimit).
Fields§
§current: u64§max: u64Trait Implementations§
Source§impl Clone for RLimitVals
 
impl Clone for RLimitVals
Source§fn clone(&self) -> RLimitVals
 
fn clone(&self) -> RLimitVals
Returns a duplicate 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 RLimitVals
 
impl Debug for RLimitVals
impl Copy for RLimitVals
Auto Trait Implementations§
impl Freeze for RLimitVals
impl RefUnwindSafe for RLimitVals
impl Send for RLimitVals
impl Sync for RLimitVals
impl Unpin for RLimitVals
impl UnwindSafe for RLimitVals
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