pub struct VolumeInformation {
pub device_path: String,
pub file_references: Vec<NtfsFile>,
pub directory_strings: Vec<String>,
pub creation_time: u64,
pub serial_number: u32,
}Fields§
§device_path: String§file_references: Vec<NtfsFile>§directory_strings: Vec<String>§creation_time: u64§serial_number: u32Trait Implementations§
Source§impl Clone for VolumeInformation
impl Clone for VolumeInformation
Source§fn clone(&self) -> VolumeInformation
fn clone(&self) -> VolumeInformation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VolumeInformation
impl Debug for VolumeInformation
Source§impl Default for VolumeInformation
impl Default for VolumeInformation
Source§fn default() -> VolumeInformation
fn default() -> VolumeInformation
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VolumeInformation
impl RefUnwindSafe for VolumeInformation
impl Send for VolumeInformation
impl Sync for VolumeInformation
impl Unpin for VolumeInformation
impl UnwindSafe for VolumeInformation
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