Struct dokan::MountPointInfo [−][src]
Mount point information.
Fields
device_type: u32
File system type of the mounted volume.
Value can be FILE_DEVICE_DISK_FILE_SYSTEM
or FILE_DEVICE_NETWORK_FILE_SYSTEM
, which are
defined in ntifs.h
.
mount_point: Option<U16CString>
Mount point path.
unc_name: Option<U16CString>
UNC name of the network volume.
device_name: U16CString
Device name of the mounted volume.
session_id: u32
The session in which the volume is mounted.
It will be -1
if the volume is mounted globally.
Trait Implementations
impl Clone for MountPointInfo
[src]
fn clone(&self) -> MountPointInfo
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for MountPointInfo
[src]
Auto Trait Implementations
impl RefUnwindSafe for MountPointInfo
impl Send for MountPointInfo
impl Sync for MountPointInfo
impl Unpin for MountPointInfo
impl UnwindSafe for MountPointInfo
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,