Skip to main content

SpawnExt7

Trait SpawnExt7 

Source
pub trait SpawnExt7<T1, T2, T3, T4, T5, T6, T7>: ParameterizedSpawn {
    // Required method
    fn spawn<'a>(
        &mut self,
        a: T1,
        b: T2,
        c: T3,
        d: T4,
        e: T5,
        f: T6,
        g: T7,
    ) -> Result<Self::Output<'a>, Self::Error>;
}

Required Methods§

Source

fn spawn<'a>( &mut self, a: T1, b: T2, c: T3, d: T4, e: T5, f: T6, g: T7, ) -> Result<Self::Output<'a>, Self::Error>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T, T1, T2, T3, T4, T5, T6, T7> SpawnExt7<T1, T2, T3, T4, T5, T6, T7> for T
where T: for<'a> ParameterizedSpawn<Input<'a> = (T1, T2, T3, T4, T5, T6, T7)>,