pub enum StreamCursor<'a, U, E>{
Stream(usize, &'a Stream<U, E>),
LazyStream(usize, &'a LazyStream<U, E>),
End,
}Variants§
Auto Trait Implementations§
impl<'a, U, E> !RefUnwindSafe for StreamCursor<'a, U, E>
impl<'a, U, E> !Send for StreamCursor<'a, U, E>
impl<'a, U, E> !Sync for StreamCursor<'a, U, E>
impl<'a, U, E> !UnwindSafe for StreamCursor<'a, U, E>
impl<'a, U, E> Freeze for StreamCursor<'a, U, E>
impl<'a, U, E> Unpin for StreamCursor<'a, U, E>
impl<'a, U, E> UnsafeUnpin for StreamCursor<'a, U, E>
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