Struct windows_sys::Wdk::Foundation::IO_STACK_LOCATION
#[repr(C)]pub struct IO_STACK_LOCATION {
pub MajorFunction: u8,
pub MinorFunction: u8,
pub Flags: u8,
pub Control: u8,
pub Parameters: IO_STACK_LOCATION_0,
pub DeviceObject: *mut DEVICE_OBJECT,
pub FileObject: *mut FILE_OBJECT,
pub CompletionRoutine: PIO_COMPLETION_ROUTINE,
pub Context: *mut c_void,
}
Expand description
Required features: "Wdk_Storage_FileSystem"
, "Wdk_System_SystemServices"
, "Win32_Foundation"
, "Win32_Security"
, "Win32_System_IO"
, "Win32_System_Kernel"
, "Win32_System_Power"
, "Win32_System_WindowsProgramming"
Fields§
§MajorFunction: u8
§MinorFunction: u8
§Flags: u8
§Control: u8
§Parameters: IO_STACK_LOCATION_0
§DeviceObject: *mut DEVICE_OBJECT
§FileObject: *mut FILE_OBJECT
§CompletionRoutine: PIO_COMPLETION_ROUTINE
§Context: *mut c_void
Trait Implementations§
§impl Clone for IO_STACK_LOCATION
impl Clone for IO_STACK_LOCATION
impl Copy for IO_STACK_LOCATION
Auto Trait Implementations§
impl RefUnwindSafe for IO_STACK_LOCATION
impl !Send for IO_STACK_LOCATION
impl !Sync for IO_STACK_LOCATION
impl Unpin for IO_STACK_LOCATION
impl UnwindSafe for IO_STACK_LOCATION
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