Skip to main content

OutputExt1

Trait OutputExt1 

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

Required Methods§

Source

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