Skip to main content

OutputExt2

Trait OutputExt2 

Source
pub trait OutputExt2<T1, T2>: ParameterizedOutput {
    // Required method
    fn output<'a>(&mut self, a: T1, b: T2) -> Result<Output, Self::Error>
       where T1: 'a,
             T2: 'a;
}

Required Methods§

Source

fn output<'a>(&mut self, a: T1, b: T2) -> Result<Output, Self::Error>
where T1: 'a, T2: '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> OutputExt2<T1, T2> for T
where T: for<'a> ParameterizedOutput<Input<'a> = (T1, T2)>,