pub trait MemProtect {
    fn mprotect(&self, flags: MemProtectFlags) -> Result<()>;
}
Expand description

Defines the mprotect system call for the type

Required methods

Sets the protection flags of a memory region

Refer to man mprotect for details.

Implementations on Foreign Types

Implementors