compio_fs

Struct Metadata

Source
pub struct Metadata(/* private fields */);
Expand description

Metadata information about a file.

Implementations§

Source§

impl Metadata

Source

pub fn file_type(&self) -> FileType

Returns the file type for this metadata.

Source

pub fn is_dir(&self) -> bool

Returns true if this metadata is for a directory.

Source

pub fn is_file(&self) -> bool

Returns true if this metadata is for a regular file.

Returns true if this metadata is for a symbolic link.

Source

pub fn len(&self) -> u64

Returns the size of the file, in bytes, this metadata is for.

Source

pub fn permissions(&self) -> Permissions

Returns the permissions of the file this metadata is for.

Source

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.
Source

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.
Source

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] or birthtime field.
Source§

impl Metadata

Source

pub fn from_std(m: Metadata) -> Self

Available on Windows only.
Source

pub fn file_attributes(&self) -> u32

Available on Windows only.

Returns the value of the dwFileAttributes field of this metadata.

Source

pub fn creation_time(&self) -> u64

Available on Windows only.

Returns the value of the ftCreationTime field of this metadata.

Source

pub fn last_access_time(&self) -> u64

Available on Windows only.

Returns the value of the ftLastAccessTime field of this metadata.

Source

pub fn last_write_time(&self) -> u64

Available on Windows only.

Returns the value of the ftLastWriteTime field of this metadata.

Source§

impl Metadata

Source

pub fn volume_serial_number(&self) -> Option<u32>

Available on Windows and crate feature windows_by_handle only.

Returns the value of the dwVolumeSerialNumber field of this metadata.

Available on Windows and crate feature windows_by_handle only.

Returns the value of the nNumberOfLinks field of this metadata.

Source

pub fn file_index(&self) -> Option<u64>

Available on Windows and crate feature windows_by_handle only.

Returns the value of the nFileIndex{Low,High} fields of this metadata.

Trait Implementations§

Source§

impl Clone for Metadata

Source§

fn clone(&self) -> Metadata

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more