Connected

Trait Connected 

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

Required Methods§

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§

§

impl Connected for ConnectedDirect

§

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,

§

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

§

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