[][src]Struct assets_manager::ReadAllDir

pub struct ReadAllDir<'a, A> { /* fields omitted */ }

An iterator over all assets in a directory.

This iterator yields the id asset of each asset in a directory, with the result of its last loading from the cache.

It can be obtained by calling DirReader::iter_all.

Trait Implementations

impl<'_, A> Debug for ReadAllDir<'_, A> where
    A: Debug
[src]

impl<'a, A> Iterator for ReadAllDir<'a, A> where
    A: Asset
[src]

type Item = (&'a str, Result<AssetRefLock<'a, A>, AssetError>)

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, A> !RefUnwindSafe for ReadAllDir<'a, A>

impl<'a, A> !Send for ReadAllDir<'a, A>

impl<'a, A> !Sync for ReadAllDir<'a, A>

impl<'a, A> Unpin for ReadAllDir<'a, A>

impl<'a, A> !UnwindSafe for ReadAllDir<'a, 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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.