Trait oak_runtime::stream::Stream [] [src]

pub trait Stream {
    type Output;
    fn stream(self) -> Self::Output;
}

Transforms a value into a stream of type Output.

Associated Types

Required Methods

Implementors