pub trait OutputExt3<T1, T2, T3>: ParameterizedOutput {
// Required method
fn output<'a>(&mut self, a: T1, b: T2, c: T3) -> Result<Output, Self::Error>
where T1: 'a,
T2: 'a,
T3: 'a;
}Required Methods§
fn output<'a>(&mut self, a: T1, b: T2, c: T3) -> Result<Output, Self::Error>where
T1: 'a,
T2: 'a,
T3: 'a,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".