Struct dokany_sys::DOKAN_MOUNT_POINT_INFO
source · #[repr(C)]pub struct DOKAN_MOUNT_POINT_INFO {
pub Type: ULONG,
pub MountPoint: [WCHAR; 260],
pub UNCName: [WCHAR; 64],
pub DeviceName: [WCHAR; 64],
pub SessionId: ULONG,
pub MountOptions: ULONG,
}
Expand description
Dokan Mount point information
Fields§
§Type: ULONG
File System Type
MountPoint: [WCHAR; 260]
Mount point. Can be “M:" (drive letter) or “C:\mount\dokan” (path in NTFS)
UNCName: [WCHAR; 64]
UNC name used for network volume
DeviceName: [WCHAR; 64]
Disk Device Name
SessionId: ULONG
Session ID of calling process
MountOptions: ULONG
Contains information about the flags on the mount
Auto Trait Implementations§
impl RefUnwindSafe for DOKAN_MOUNT_POINT_INFO
impl Send for DOKAN_MOUNT_POINT_INFO
impl Sync for DOKAN_MOUNT_POINT_INFO
impl Unpin for DOKAN_MOUNT_POINT_INFO
impl UnwindSafe for DOKAN_MOUNT_POINT_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