Struct dokan::VolumeInfo [−][src]
Volume information returned by FileSystemHandler::get_volume_information
.
Fields
name: U16CString
Name of the volume.
serial_number: u32
Serial number of the volume.
max_component_length: u32
The maximum length of a path component that is supported.
fs_flags: u32
The flags associated with the file system.
It can be combination of one or more flags defined by Windows.
FILE_READ_ONLY_VOLUME
is automatically added if
MountFlags::WRITE_PROTECT
was specified when mounting the volume.
fs_name: U16CString
Name of the file system.
Windows checks feature availability based on file system name, so it is recommended to set it to well-known names like NTFS or FAT.
Trait Implementations
impl Clone for VolumeInfo
[src]
fn clone(&self) -> VolumeInfo
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for VolumeInfo
[src]
Auto Trait Implementations
impl RefUnwindSafe for VolumeInfo
impl Send for VolumeInfo
impl Sync for VolumeInfo
impl Unpin for VolumeInfo
impl UnwindSafe for VolumeInfo
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>,