pub struct Metadata(/* private fields */);
Expand description
Metadata information about a file.
Implementations§
source§impl Metadata
impl Metadata
sourcepub fn is_symlink(&self) -> bool
pub fn is_symlink(&self) -> bool
Returns true
if this metadata is for a symbolic link.
sourcepub fn permissions(&self) -> Permissions
pub fn permissions(&self) -> Permissions
Returns the permissions of the file this metadata is for.
sourcepub fn modified(&self) -> Result<SystemTime>
pub fn modified(&self) -> Result<SystemTime>
Returns the last modification time listed in this metadata.
§Platform specific
- Windows: The returned value corresponds to the
ftLastWriteTime
field. - Unix: The returned value corresponds to the
mtime
field.
sourcepub fn accessed(&self) -> Result<SystemTime>
pub fn accessed(&self) -> Result<SystemTime>
Returns the last access time of this metadata.
§Platform specific
- Windows: The returned value corresponds to the
ftLastAccessTime
field. - Unix: The returned value corresponds to the
atime
field.
sourcepub fn created(&self) -> Result<SystemTime>
pub fn created(&self) -> Result<SystemTime>
Returns the creation time listed in this metadata.
§Platform specific
- Windows: The returned value corresponds to the
ftCreationTime
field. - Unix: The returned value corresponds to the
btime
field of [libc::statx
] orbirthtime
field.
source§impl Metadata
impl Metadata
sourcepub fn from_std(m: Metadata) -> Self
Available on Windows only.
pub fn from_std(m: Metadata) -> Self
Create Metadata
from std::fs::Metadata
.
sourcepub fn file_attributes(&self) -> u32
Available on Windows only.
pub fn file_attributes(&self) -> u32
Returns the value of the dwFileAttributes
field of this metadata.
sourcepub fn creation_time(&self) -> u64
Available on Windows only.
pub fn creation_time(&self) -> u64
Returns the value of the ftCreationTime
field of this metadata.
sourcepub fn last_access_time(&self) -> u64
Available on Windows only.
pub fn last_access_time(&self) -> u64
Returns the value of the ftLastAccessTime
field of this metadata.
sourcepub fn last_write_time(&self) -> u64
Available on Windows only.
pub fn last_write_time(&self) -> u64
Returns the value of the ftLastWriteTime
field of this metadata.
source§impl Metadata
impl Metadata
sourcepub fn volume_serial_number(&self) -> Option<u32>
Available on Windows and crate feature windows_by_handle
only.
pub fn volume_serial_number(&self) -> Option<u32>
windows_by_handle
only.Returns the value of the dwVolumeSerialNumber
field of this
metadata.
sourcepub fn number_of_links(&self) -> Option<u32>
Available on Windows and crate feature windows_by_handle
only.
pub fn number_of_links(&self) -> Option<u32>
windows_by_handle
only.Returns the value of the nNumberOfLinks
field of this
metadata.
sourcepub fn file_index(&self) -> Option<u64>
Available on Windows and crate feature windows_by_handle
only.
pub fn file_index(&self) -> Option<u64>
windows_by_handle
only.Returns the value of the nFileIndex{Low,High}
fields of this
metadata.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Metadata
impl RefUnwindSafe for Metadata
impl Send for Metadata
impl Sync for Metadata
impl Unpin for Metadata
impl UnwindSafe for Metadata
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)