Trait timely::dataflow::stream::AsStream

source ·
pub trait AsStream<S: Scope, C> {
    // Required method
    fn as_stream(self) -> StreamCore<S, C>;
}
Expand description

A type that can be translated to a StreamCore.

Required Methods§

source

fn as_stream(self) -> StreamCore<S, C>

Translate self to a StreamCore.

Implementors§

source§

impl<S: Scope, C> AsStream<S, C> for StreamCore<S, C>