Skip to main content

OutputExt8

Trait OutputExt8 

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

Required Methods§

Source

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

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<T, T1, T2, T3, T4, T5, T6, T7, T8> OutputExt8<T1, T2, T3, T4, T5, T6, T7, T8> for T
where T: SpawnExt8<T1, T2, T3, T4, T5, T6, T7, T8, Output = Child, Error = Error>,