#[repr(C)]pub struct IoStackLocation {
pub major_function: u8,
pub minor_function: u8,
pub flags: u8,
pub control: u8,
pub parameters: IoStackParameters,
pub device_object: *mut c_void,
pub file_object: *mut c_void,
pub completion_routine: *mut c_void,
pub context: *mut c_void,
}Expand description
I/O stack location
Fields§
§major_function: u8§minor_function: u8§flags: u8§control: u8§parameters: IoStackParameters§device_object: *mut c_void§file_object: *mut c_void§completion_routine: *mut c_void§context: *mut c_voidAuto Trait Implementations§
impl Freeze for IoStackLocation
impl RefUnwindSafe for IoStackLocation
impl !Send for IoStackLocation
impl !Sync for IoStackLocation
impl Unpin for IoStackLocation
impl UnwindSafe for IoStackLocation
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