[][src]Struct zbox::DirEntry

pub struct DirEntry { /* fields omitted */ }

Entries returned by the read_dir function.

An instance of DirEntry represents an entry inside of a directory in the repository. Each entry can be inspected via methods to learn about the full path or other metadata.

Methods

impl DirEntry[src]

pub fn path(&self) -> &Path[src]

Returns the full path to the file that this entry represents.

pub fn file_name(&self) -> &str[src]

Returns the bare file name of this directory entry without any other leading path component.

pub fn metadata(&self) -> Metadata[src]

Return the metadata for the file that this entry points at.

Trait Implementations

impl Debug for DirEntry[src]

Auto Trait Implementations

impl Send for DirEntry

impl Sync for DirEntry

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.