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