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§
sourcefn as_stream(self) -> StreamCore<S, C>
fn as_stream(self) -> StreamCore<S, C>
Translate self
to a StreamCore.