Struct cap_std::fs::Metadata

source ·
pub struct Metadata { /* private fields */ }
Expand description

Metadata information about a file.

This corresponds to std::fs::Metadata.

We need to define our own version because the libstd `Metadata` doesn't have a public constructor that we can use.

Implementations§

source§

impl Metadata

source

pub fn from_file(file: &File) -> Result<Metadata, Error>

Constructs a new instance of Self from the given std::fs::File.

source

pub fn from_just_metadata(std: Metadata) -> Metadata

Constructs a new instance of Self from the given std::fs::Metadata.

As with the comments in std::fs::Metadata::volume_serial_number and nearby functions, some fields of the resulting metadata will be None.

source

pub const fn file_type(&self) -> FileType

Returns the file type for this metadata.

This corresponds to std::fs::Metadata::file_type.

source

pub fn is_dir(&self) -> bool

Returns true if this metadata is for a directory.

This corresponds to std::fs::Metadata::is_dir.

source

pub fn is_file(&self) -> bool

Returns true if this metadata is for a regular file.

This corresponds to std::fs::Metadata::is_file.

Returns true if this metadata is for a symbolic link.

This corresponds to std::fs::Metadata::is_symlink.

source

pub const fn len(&self) -> u64

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

This corresponds to std::fs::Metadata::len.

source

pub fn permissions(&self) -> Permissions

Returns the permissions of the file this metadata is for.

This corresponds to std::fs::Metadata::permissions.

source

pub fn modified(&self) -> Result<SystemTime, Error>

Returns the last modification time listed in this metadata.

This corresponds to std::fs::Metadata::modified.

source

pub fn accessed(&self) -> Result<SystemTime, Error>

Returns the last access time of this metadata.

This corresponds to std::fs::Metadata::accessed.

source

pub fn created(&self) -> Result<SystemTime, Error>

Returns the creation time listed in this metadata.

This corresponds to std::fs::Metadata::created.

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
source§

impl Debug for Metadata

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl MetadataExt for Metadata

Available on Unix only.
source§

fn dev(&self) -> u64

Returns the ID of the device containing the file. Read more
source§

fn ino(&self) -> u64

Returns the inode number. Read more
source§

fn mode(&self) -> u32

Returns the rights applied to this file. Read more
Returns the number of hard links pointing to this file. Read more
source§

fn uid(&self) -> u32

Returns the user ID of the owner of this file. Read more
source§

fn gid(&self) -> u32

Returns the group ID of the owner of this file. Read more
source§

fn rdev(&self) -> u64

Returns the device ID of this file (if it is a special one). Read more
source§

fn size(&self) -> u64

Returns the total size of this file in bytes. Read more
source§

fn atime(&self) -> i64

Returns the last access time of the file, in seconds since Unix Epoch. Read more
source§

fn atime_nsec(&self) -> i64

Returns the last access time of the file, in nanoseconds since atime. Read more
source§

fn mtime(&self) -> i64

Returns the last modification time of the file, in seconds since Unix Epoch. Read more
source§

fn mtime_nsec(&self) -> i64

Returns the last modification time of the file, in nanoseconds since mtime. Read more
source§

fn ctime(&self) -> i64

Returns the last status change time of the file, in seconds since Unix Epoch. Read more
source§

fn ctime_nsec(&self) -> i64

Returns the last status change time of the file, in nanoseconds since ctime. Read more
source§

fn blksize(&self) -> u64

Returns the block size for filesystem I/O. Read more
source§

fn blocks(&self) -> u64

Returns the number of blocks allocated to the file, in 512-byte units. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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> ToOwned for Twhere
    T: Clone,

§

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 Twhere
    U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.