[][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> RefUnwindSafe for SetInstaller<T, I> where
    I: RefUnwindSafe,
    T: RefUnwindSafe

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

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

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