#[repr(C)]pub struct MdlRaw {
pub next: *mut MdlRaw,
pub size: i16,
pub mdl_flags: i16,
pub process: *mut c_void,
pub mapped_system_va: *mut c_void,
pub start_va: *mut c_void,
pub byte_count: u32,
pub byte_offset: u32,
}Expand description
memory descriptor list wrapper
Fields§
§next: *mut MdlRaw§size: i16§mdl_flags: i16§process: *mut c_void§mapped_system_va: *mut c_void§start_va: *mut c_void§byte_count: u32§byte_offset: u32Auto Trait Implementations§
impl Freeze for MdlRaw
impl RefUnwindSafe for MdlRaw
impl !Send for MdlRaw
impl !Sync for MdlRaw
impl Unpin for MdlRaw
impl UnwindSafe for MdlRaw
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