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>.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".