[][src]Struct zbox::Metadata

pub struct Metadata { /* fields omitted */ }

Metadata information about a file or a directory.

This structure is returned from the File::metadata and Repo::metadata represents known metadata about a file such as its type, size, modification times, etc.

Methods

impl Metadata[src]

pub fn file_type(&self) -> FileType[src]

Returns the file type for this metadata.

pub fn is_dir(&self) -> bool[src]

Returns whether this metadata is for a directory.

pub fn is_file(&self) -> bool[src]

Returns whether this metadata is for a regular file.

pub fn content_len(&self) -> usize[src]

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

pub fn curr_version(&self) -> usize[src]

Returns current version number of file listed in this metadata.

pub fn created_at(&self) -> SystemTime[src]

Returns the creation time listed in this metadata.

pub fn modified_at(&self) -> SystemTime[src]

Returns the last modification time listed in this metadata.

Trait Implementations

impl Clone for Metadata[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for Metadata[src]

impl Debug for Metadata[src]

Auto Trait Implementations

impl Send for Metadata

impl Sync for Metadata

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]