pub trait GetLimit {
    // Required method
    fn get_limit(&mut self) -> usize;
}

Required Methods§

source

fn get_limit(&mut self) -> usize

| Get the total limit on the amount of memory | that may be locked by this process, in | bytes. Return size_t max if there is | no limit or the limit is unknown. Return | 0 if no memory can be locked at all. |

Implementors§