Skip to main content

OutputExt6

Trait OutputExt6 

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

Required Methods§

Source

fn output( &mut self, a: T1, b: T2, c: T3, d: T4, e: T5, f: T6, ) -> 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> OutputExt6<T1, T2, T3, T4, T5, T6> for T
where T: SpawnExt6<T1, T2, T3, T4, T5, T6, Output = Child, Error = Error>,