#[repr(C)]pub struct FILE_NOTIFY_EXTENDED_INFORMATION {Show 14 fields
pub NextEntryOffset: u32,
pub Action: FILE_ACTION,
pub CreationTime: i64,
pub LastModificationTime: i64,
pub LastChangeTime: i64,
pub LastAccessTime: i64,
pub AllocatedLength: i64,
pub FileSize: i64,
pub FileAttributes: u32,
pub ReparsePointTag: u32,
pub FileId: i64,
pub ParentFileId: i64,
pub FileNameLength: u32,
pub FileName: [u16; 1],
}Fields§
§NextEntryOffset: u32§Action: FILE_ACTION§CreationTime: i64§LastModificationTime: i64§LastChangeTime: i64§LastAccessTime: i64§AllocatedLength: i64§FileSize: i64§FileAttributes: u32§ReparsePointTag: u32§FileId: i64§ParentFileId: i64§FileNameLength: u32§FileName: [u16; 1]Trait Implementations§
Source§impl Abi for FILE_NOTIFY_EXTENDED_INFORMATION
impl Abi for FILE_NOTIFY_EXTENDED_INFORMATION
Source§type Abi = FILE_NOTIFY_EXTENDED_INFORMATION
type Abi = FILE_NOTIFY_EXTENDED_INFORMATION
The abi representation of the implementing type. Read more
type DefaultType = FILE_NOTIFY_EXTENDED_INFORMATION
Source§fn ok(value: &Self::DefaultType) -> Result<Self, Error>
fn ok(value: &Self::DefaultType) -> Result<Self, Error>
Converts from
Self::DefaultType to Result<T>.Source§fn set_abi(&mut self) -> *mut Self::Abi
fn set_abi(&mut self) -> *mut Self::Abi
Returns a pointer for setting the object’s value via an ABI call.
fn drop_param(_: &mut Param<'_, Self>)
Source§impl Clone for FILE_NOTIFY_EXTENDED_INFORMATION
impl Clone for FILE_NOTIFY_EXTENDED_INFORMATION
Source§fn clone(&self) -> FILE_NOTIFY_EXTENDED_INFORMATION
fn clone(&self) -> FILE_NOTIFY_EXTENDED_INFORMATION
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FILE_NOTIFY_EXTENDED_INFORMATION
impl Eq for FILE_NOTIFY_EXTENDED_INFORMATION
Auto Trait Implementations§
impl Freeze for FILE_NOTIFY_EXTENDED_INFORMATION
impl RefUnwindSafe for FILE_NOTIFY_EXTENDED_INFORMATION
impl Send for FILE_NOTIFY_EXTENDED_INFORMATION
impl Sync for FILE_NOTIFY_EXTENDED_INFORMATION
impl Unpin for FILE_NOTIFY_EXTENDED_INFORMATION
impl UnsafeUnpin for FILE_NOTIFY_EXTENDED_INFORMATION
impl UnwindSafe for FILE_NOTIFY_EXTENDED_INFORMATION
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