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>.
pub trait Link<In, Out>: Sink<In> + Source<Out> { }A bidirectional pass-through: accepts In and yields Out.
This is automatically implemented for any type that is both
Sink<In> and Source<Out>.