Struct gc_gcm::DirEntry[][src]

pub struct DirEntry<'a> { /* fields omitted */ }

An entry representing a directory within the image's filesystem

Implementations

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

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

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

pub fn entry_name(&self) -> &'a str[src]

pub fn iter_dir(&self) -> Option<impl Iterator<Item = DirEntry<'a>> + 'a>[src]

pub fn get_child(&self, child_name: &str) -> Option<DirEntry<'a>>[src]

pub fn as_file(&self) -> Option<File>[src]

Trait Implementations

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

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

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

Auto Trait Implementations

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

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

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

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

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

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.