Skip to main content

AsStream

Trait AsStream 

Source
pub trait AsStream<'scope, T: Timestamp, C> {
    // Required method
    fn as_stream(self) -> Stream<'scope, T, C>;
}
Expand description

A type that can be translated to a Stream.

Required Methods§

Source

fn as_stream(self) -> Stream<'scope, T, C>

Translate self to a Stream.

Implementors§

Source§

impl<'scope, T: Timestamp, C> AsStream<'scope, T, C> for Stream<'scope, T, C>