pub struct VaProtection {
pub is_private: bool,
pub read: bool,
pub write: bool,
pub execute: bool,
}Expand description
Struct that describes a region’s access permissions
Fields§
§is_private: boolField that indicates this is a private region
read: boolRead permissions
write: boolWrite permissions
execute: boolExecute permissions
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VaProtection
impl RefUnwindSafe for VaProtection
impl Send for VaProtection
impl Sync for VaProtection
impl Unpin for VaProtection
impl UnsafeUnpin for VaProtection
impl UnwindSafe for VaProtection
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