Trait hydroflow::util::cli::Connected

pub trait Connected: Send {
    // Required method
    fn from_defn<'async_trait>(
        pipe: ServerOrBound
    ) -> Pin<Box<dyn Future<Output = Self> + Send + 'async_trait>>
       where Self: 'async_trait;
}

Required Methods§

fn from_defn<'async_trait>( pipe: ServerOrBound ) -> Pin<Box<dyn Future<Output = Self> + Send + 'async_trait>>
where Self: 'async_trait,

Object Safety§

This trait is not object safe.

Implementors§

§

impl Connected for ConnectedDirect

§

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,