#[repr(C)]pub struct ProtectMemoryRequest {
pub process_id: u32,
pub address: u64,
pub size: u64,
pub new_protection: u32,
}Expand description
protect memory request
Fields§
§process_id: u32§address: u64§size: u64§new_protection: u32Trait Implementations§
Source§impl Clone for ProtectMemoryRequest
impl Clone for ProtectMemoryRequest
Source§fn clone(&self) -> ProtectMemoryRequest
fn clone(&self) -> ProtectMemoryRequest
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 ProtectMemoryRequest
impl Debug for ProtectMemoryRequest
impl Copy for ProtectMemoryRequest
Auto Trait Implementations§
impl Freeze for ProtectMemoryRequest
impl RefUnwindSafe for ProtectMemoryRequest
impl Send for ProtectMemoryRequest
impl Sync for ProtectMemoryRequest
impl Unpin for ProtectMemoryRequest
impl UnwindSafe for ProtectMemoryRequest
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