timely::dataflow::stream

Trait 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>