Skip to main content

OutputExt5

Trait OutputExt5 

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

Required Methods§

Source

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