Struct dokan_sys::DOKAN_FILE_INFO[][src]

#[repr(C)]pub struct DOKAN_FILE_INFO {
    pub Context: ULONG64,
    pub DokanContext: ULONG64,
    pub DokanOptions: PDOKAN_OPTIONS,
    pub ProcessId: ULONG,
    pub IsDirectory: UCHAR,
    pub DeleteOnClose: UCHAR,
    pub PagingIo: UCHAR,
    pub SynchronousIo: UCHAR,
    pub Nocache: UCHAR,
    pub WriteToEndOfFile: UCHAR,
}

Fields

Context: ULONG64DokanContext: ULONG64DokanOptions: PDOKAN_OPTIONSProcessId: ULONGIsDirectory: UCHARDeleteOnClose: UCHARPagingIo: UCHARSynchronousIo: UCHARNocache: UCHARWriteToEndOfFile: UCHAR

Trait Implementations

impl Debug for DOKAN_FILE_INFO[src]

Auto Trait Implementations

impl RefUnwindSafe for DOKAN_FILE_INFO

impl !Send for DOKAN_FILE_INFO

impl !Sync for DOKAN_FILE_INFO

impl Unpin for DOKAN_FILE_INFO

impl UnwindSafe for DOKAN_FILE_INFO

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.