pub struct StreamWithState<'m, A = AlwaysMatch>(/* private fields */)
where
A: Automaton;
Expand description
A lexicographically ordered stream of key-value from a map along with the states of the automaton.
The Stream
type is based on the StreamWithState
.
Trait Implementations§
Source§impl<'a, 'm, A: 'a + Automaton> Streamer<'a> for StreamWithState<'m, A>
impl<'a, 'm, A: 'a + Automaton> Streamer<'a> for StreamWithState<'m, A>
Auto Trait Implementations§
impl<'m, A> Freeze for StreamWithState<'m, A>where
A: Freeze,
impl<'m, A> RefUnwindSafe for StreamWithState<'m, A>
impl<'m, A> Send for StreamWithState<'m, A>
impl<'m, A> Sync for StreamWithState<'m, A>
impl<'m, A> Unpin for StreamWithState<'m, A>
impl<'m, A> UnwindSafe for StreamWithState<'m, A>
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