[][src]Struct spirit::fragment::pipeline::Map

pub struct Map<T, M>(_, _);

A Transformation than maps a Resource through a closure.

This is used internally, to implement the map method. The user should not have to come into direct contact with this.

Trait Implementations

impl<T, M, Rin, Rout, I, S> Transformation<Rin, I, S> for Map<T, M> where
    T: Transformation<Rin, I, S>,
    M: FnMut(T::OutputResource) -> Rout,
    Rout: 'static, 
[src]

type OutputResource = Rout

The type of resource after the transformation.

type OutputInstaller = T::OutputInstaller

The type of installer after the transformation. Read more

Auto Trait Implementations

impl<T, M> RefUnwindSafe for Map<T, M> where
    M: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, M> Send for Map<T, M> where
    M: Send,
    T: Send

impl<T, M> Sync for Map<T, M> where
    M: Sync,
    T: Sync

impl<T, M> Unpin for Map<T, M> where
    M: Unpin,
    T: Unpin

impl<T, M> UnwindSafe for Map<T, M> where
    M: UnwindSafe,
    T: UnwindSafe

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> IntoResult<T> for 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.