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

pub struct SetInstaller<T, I>(_, _);

A Transformation that replaces the Installer of a pipeline.

Used internally to implement the install.

Trait Implementations

impl<T, I, R, OI, S> Transformation<R, OI, S> for SetInstaller<T, I> where
    T: Transformation<R, OI, S>, 
[src]

type OutputResource = T::OutputResource

The type of resource after the transformation.

type OutputInstaller = I

The type of installer after the transformation. Read more

Auto Trait Implementations

impl<T, I> Send for SetInstaller<T, I> where
    I: Send,
    T: Send

impl<T, I> Sync for SetInstaller<T, I> where
    I: Sync,
    T: Sync

Blanket Implementations

impl<T> IntoResult for T[src]

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Erased for T