DecoupleClusterStream

Trait DecoupleClusterStream 

Source
pub trait DecoupleClusterStream<'a, T, C1, B, Order> {
    // Required method
    fn decouple_cluster<C2: 'a>(
        self,
        other: &Cluster<'a, C2>,
    ) -> Stream<T, Cluster<'a, C2>, Unbounded, Order>
       where T: Clone + Serialize + DeserializeOwned;
}

Required Methods§

Source

fn decouple_cluster<C2: 'a>( self, other: &Cluster<'a, C2>, ) -> Stream<T, Cluster<'a, C2>, Unbounded, Order>

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.

Implementations on Foreign Types§

Source§

impl<'a, T, C1, B: Boundedness, Order> DecoupleClusterStream<'a, T, C1, B, Order> for Stream<T, Cluster<'a, C1>, B, Order>

Source§

fn decouple_cluster<C2: 'a>( self, other: &Cluster<'a, C2>, ) -> Stream<T, Cluster<'a, C2>, Unbounded, Order>

Implementors§