[][src]Struct streams_rs::fn_stream::FnStream

pub struct FnStream<'a, T: Clone> { /* fields omitted */ }

Basic stream type. To use it you should provide getter function:

use streams_rs::{*,fn_stream::*};
let get = (|| StreamResult::Ok(1));
let mut stream = FnStream::new(get);
stream.token(0); // 1
stream.token(1); // 1

Implementations

impl<'a, T: Clone> FnStream<'a, T>[src]

pub fn new(get: impl FnMut() -> StreamResult<T> + 'a) -> Self[src]

Trait Implementations

impl<'a, T: Clone> Stream<'a> for FnStream<'a, T>[src]

type Item = T

Auto Trait Implementations

impl<'a, T> !RefUnwindSafe for FnStream<'a, T>

impl<'a, T> !Send for FnStream<'a, T>

impl<'a, T> !Sync for FnStream<'a, T>

impl<'a, T> Unpin for FnStream<'a, T> where
    T: Unpin

impl<'a, T> !UnwindSafe for FnStream<'a, T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.