Struct windows_sys::Wdk::Storage::FileSystem::FILE_LOCK_INFO
#[repr(C)]pub struct FILE_LOCK_INFO {
pub StartingByte: i64,
pub Length: i64,
pub ExclusiveLock: BOOLEAN,
pub Key: u32,
pub FileObject: *mut FILE_OBJECT,
pub ProcessId: *mut c_void,
pub EndingByte: i64,
}
Expand description
Required features: "Wdk_Foundation"
, "Wdk_System_SystemServices"
, "Win32_Foundation"
, "Win32_Security"
, "Win32_System_IO"
, "Win32_System_Kernel"
, "Win32_System_Power"
, "Win32_System_WindowsProgramming"
Fields§
§StartingByte: i64
§Length: i64
§ExclusiveLock: BOOLEAN
§Key: u32
§FileObject: *mut FILE_OBJECT
§ProcessId: *mut c_void
§EndingByte: i64
Trait Implementations§
§impl Clone for FILE_LOCK_INFO
impl Clone for FILE_LOCK_INFO
impl Copy for FILE_LOCK_INFO
Auto Trait Implementations§
impl RefUnwindSafe for FILE_LOCK_INFO
impl !Send for FILE_LOCK_INFO
impl !Sync for FILE_LOCK_INFO
impl Unpin for FILE_LOCK_INFO
impl UnwindSafe for FILE_LOCK_INFO
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