[][src]Enum include_dir::DirEntry

pub enum DirEntry<'a> {
    File(File<'a>),
    Dir(Dir<'a>),
}

Entries returned by the Globs iterator

Variants

File(File<'a>)

A file with its contents stored in a &'static u8.

Dir(Dir<'a>)

A directory entry.

Methods

impl<'a> DirEntry<'a>[src]

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

Get the entries's path

Trait Implementations

impl<'a> Clone for DirEntry<'a>[src]

impl<'a> Copy for DirEntry<'a>[src]

impl<'a> Debug for DirEntry<'a>[src]

impl<'a> PartialEq<DirEntry<'a>> for DirEntry<'a>[src]

impl<'a> StructuralPartialEq for DirEntry<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for DirEntry<'a>

impl<'a> Send for DirEntry<'a>

impl<'a> Sync for DirEntry<'a>

impl<'a> Unpin for DirEntry<'a>

impl<'a> UnwindSafe for DirEntry<'a>

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.