[][src]Struct rs_stream::stream::Stream

pub struct Stream<T> { /* fields omitted */ }

Transformable, immutable datatype

Methods

impl<T> Stream<T>[src]

pub fn from(val: Vec<T>) -> Stream<T>[src]

Create a new stream from a vector

pub fn collect(self) -> Vec<T>[src]

Consumes the stream and returns its value

pub fn map<F>(self, f: F) -> Stream<T> where
    F: Fn(T) -> T, 
[src]

Applies a given function to every value of the stream

pub fn filter<F>(self, f: F) -> Stream<T> where
    F: Fn(&T) -> bool
[src]

Auto Trait Implementations

impl<T> Send for Stream<T> where
    T: Send

impl<T> Sync for Stream<T> where
    T: Sync

impl<T> Unpin for Stream<T> where
    T: Unpin

impl<T> UnwindSafe for Stream<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for Stream<T> where
    T: RefUnwindSafe

Blanket Implementations

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 = !

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.

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

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

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