Skip to main content

OutputExt6

Trait OutputExt6 

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

Required Methods§

Source

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

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> OutputExt6<T1, T2, T3, T4, T5, T6> for T
where T: for<'a> ParameterizedOutput<Input<'a> = (T1, T2, T3, T4, T5, T6)>,