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