Skip to main content

EntOutput

Trait EntOutput 

Source
pub trait EntOutput<E> {
    // Required method
    fn ent_output(self, extra: &E, output: &mut (impl ?Sized + Output));
}

Required Methods§

Source

fn ent_output(self, extra: &E, output: &mut (impl ?Sized + Output))

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T: IntoIterator<Item = A>, E, A: ExtraNoneOutput<E> + InlineOutput> EntOutput<E> for T