[][src]Struct ub::deserialize::Files

pub struct Files<'a, R: Read + Seek> { /* fields omitted */ }

A collection of files deserialized by parse.

Implementations

impl<'a, R: Read + Seek> Files<'a, R>[src]

pub fn all(&mut self) -> &mut [File<'a, R>][src]

Get all the files.

pub fn filter<F: FnMut(&Path) -> bool>(
    &mut self,
    mut filter: F
) -> Vec<&mut File<'a, R>>
[src]

Filter through all files by path with filter.

Trait Implementations

impl<'a, R: Debug + Read + Seek> Debug for Files<'a, R>[src]

Auto Trait Implementations

impl<'a, R> !RefUnwindSafe for Files<'a, R>[src]

impl<'a, R> !Send for Files<'a, R>[src]

impl<'a, R> !Sync for Files<'a, R>[src]

impl<'a, R> Unpin for Files<'a, R>[src]

impl<'a, R> !UnwindSafe for Files<'a, R>[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, 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.