Connected

Trait Connected 

Source
pub trait Connected: Send {
    // Required method
    fn from_defn(pipe: Connection) -> Self;
}
Available on crate feature deploy_integration only.

Required Methods§

Source

fn from_defn(pipe: Connection) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl Connected for ConnectedDirect

Source§

impl<I, O, C> Connected for ConnectedMultiConnection<I, O, C>
where I: 'static, O: Send + Sync + 'static, C: Decoder<Item = I> + Encoder<O> + Send + Sync + Default + 'static,

Source§

impl<T> Connected for ConnectedDemux<T>
where T: Connected + ConnectedSink, <T as ConnectedSink>::Input: 'static + Sync,

Source§

impl<T> Connected for ConnectedTagged<T>
where T: Connected + ConnectedSource, <T as ConnectedSource>::Output: 'static + Sync + Unpin,