Home
last modified time | relevance | path

Searched defs:Rlim (Results 1 – 3 of 3) sorted by relevance

/dports/security/rustscan/RustScan-2.0.1/cargo-crates/rlimit-0.5.2/src/unix/
H A Drlim_type.rs42 pub struct Rlim(RawRlim); struct
44 impl Rlim { impl
69 impl Rlim { implementation
114 impl fmt::Debug for Rlim { implementation
120 impl fmt::Display for Rlim { implementation
126 impl FromStr for Rlim { implementation
133 impl TryFrom<usize> for Rlim { implementation
243 impl Rlim{ impl
254 impl Rlim{ impl
H A Dresource_type.rs490 pub fn set(self, soft: Rlim, hard: Rlim) -> io::Result<()> { in set()
498 pub fn get(self) -> io::Result<(Rlim, Rlim)> { in get() argument
/dports/security/rustscan/RustScan-2.0.1/cargo-crates/rlimit-0.5.2/src/
H A Dlib.rs71 pub fn setrlimit(resource: Resource, soft: Rlim, hard: Rlim) -> io::Result<()> { in setrlimit()
92 pub fn getrlimit(resource: Resource) -> io::Result<(Rlim, Rlim)> { in getrlimit() argument
119 new_limit: Option<(Rlim, Rlim)>, in prlimit() argument
120 old_limit: Option<(&mut Rlim, &mut Rlim)>, in prlimit()