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

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

Transforms a value into a stream of type Output.

Associated Types

Loading content...

Required methods

pub fn stream(self) -> Self::Output[src]

Loading content...

Implementations on Foreign Types

impl<'a> Stream for &'a str[src]

type Output = StrStream<'a>

impl<'a> Stream for &'a String[src]

type Output = StrStream<'a>

impl<'a> Stream for &'a Rc<FileMap>[src]

type Output = FileMapStream<'a>

Loading content...

Implementors

Loading content...