Skip to main content

Link

Trait Link 

Source
pub trait Link<In, Out>: Sink<In> + Source<Out> { }
Expand description

A bidirectional pass-through: accepts In and yields Out.

This is automatically implemented for any type that is both Sink<In> and Source<Out>.

Implementors§

Source§

impl<In, Out, L> Link<In, Out> for L
where L: Sink<In> + Source<Out>,