pub enum Stream<'f, I: Clone, S: Clone> {
Nil,
Cons(I, Box<StreamFx<'f, I, S>>),
}
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'f, I, S> Freeze for Stream<'f, I, S>where
I: Freeze,
impl<'f, I, S> !RefUnwindSafe for Stream<'f, I, S>
impl<'f, I, S> !Send for Stream<'f, I, S>
impl<'f, I, S> !Sync for Stream<'f, I, S>
impl<'f, I, S> Unpin for Stream<'f, I, S>where
I: Unpin,
impl<'f, I, S> !UnwindSafe for Stream<'f, I, S>
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