[][src]Struct spirit::fragment::SeqInstaller

pub struct SeqInstaller<Slave> { /* fields omitted */ }

A sequence installer.

This is an auxiliary installer wrapper, to install instances from a collection of fragments.

Usually, this is used behind the scenes in things like Vec<F: Fragment> and shouldn't have to be used by user directly.

Trait Implementations

impl<Slave: Debug> Debug for SeqInstaller<Slave>[src]

impl<Slave: Default> Default for SeqInstaller<Slave>[src]

impl<Resource, O, C, Slave> Installer<Resource, O, C> for SeqInstaller<Slave> where
    Resource: IntoIterator,
    Slave: Installer<Resource::Item, O, C>, 
[src]

type UninstallHandle = Vec<Slave::UninstallHandle>

A handle representing lifetime of the resource. Read more

Auto Trait Implementations

impl<Slave> RefUnwindSafe for SeqInstaller<Slave> where
    Slave: RefUnwindSafe

impl<Slave> Send for SeqInstaller<Slave> where
    Slave: Send

impl<Slave> Sync for SeqInstaller<Slave> where
    Slave: Sync

impl<Slave> Unpin for SeqInstaller<Slave> where
    Slave: Unpin

impl<Slave> UnwindSafe for SeqInstaller<Slave> where
    Slave: 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.