pub struct Stream<I, T> { /* private fields */ }Expand description
Stream.
Implementations§
Source§impl<I, T> Stream<I, T>
impl<I, T> Stream<I, T>
Sourcepub fn filter_map<F, A, U>(&self, f: F) -> Stream<I, U>
pub fn filter_map<F, A, U>(&self, f: F) -> Stream<I, U>
Maps the stream using the provided function.
Trait Implementations§
Auto Trait Implementations§
impl<I, T> Freeze for Stream<I, T>
impl<I, T> !RefUnwindSafe for Stream<I, T>
impl<I, T> !Send for Stream<I, T>
impl<I, T> !Sync for Stream<I, T>
impl<I, T> Unpin for Stream<I, T>where
T: Unpin,
impl<I, T> UnsafeUnpin for Stream<I, T>
impl<I, T> !UnwindSafe for Stream<I, T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more