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

pub struct AndThen<T, A>(_, _);

A Transformation that maps a Resource through a fallible closure.

This is used internally, to implement the and_then 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 AndThen<T, M> where
    T: Transformation<Rin, I, S>,
    M: FnMut(T::OutputResource) -> Result<Rout, AnyError>,
    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, A> RefUnwindSafe for AndThen<T, A> where
    A: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, A> Send for AndThen<T, A> where
    A: Send,
    T: Send

impl<T, A> Sync for AndThen<T, A> where
    A: Sync,
    T: Sync

impl<T, A> Unpin for AndThen<T, A> where
    A: Unpin,
    T: Unpin

impl<T, A> UnwindSafe for AndThen<T, A> where
    A: 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.