pub struct Stateful<I, S> {
pub input: I,
pub state: S,
}
Expand description
Thread global state through your parsers
Use cases
- Recursion checks
- Error recovery
- Debugging
Example
#[derive(Clone, Debug)]
struct State<'s>(&'s Cell<u32>);
impl<'s> State<'s> {
fn count(&self) {
self.0.set(self.0.get() + 1);
}
}
type Stream<'is> = Stateful<&'is str, State<'is>>;
fn word(i: Stream<'_>) -> IResult<Stream<'_>, &str> {
i.state.count();
alpha1(i)
}
let data = "Hello";
let state = Cell::new(0);
let input = Stream { input: data, state: State(&state) };
let output = word.parse(input).unwrap();
assert_eq!(state.get(), 1);
Fields§
§input: I
Inner input being wrapped in state
state: S
User-provided state
Trait Implementations§
source§impl<I, S, U> Compare<U> for Stateful<I, S>where
I: Compare<U>,
impl<I, S, U> Compare<U> for Stateful<I, S>where I: Compare<U>,
source§fn compare(&self, other: U) -> CompareResult
fn compare(&self, other: U) -> CompareResult
Compares self to another value for equality
source§fn compare_no_case(&self, other: U) -> CompareResult
fn compare_no_case(&self, other: U) -> CompareResult
Compares self to another value for equality
independently of the case. Read more
source§impl<I, S, T> FindSlice<T> for Stateful<I, S>where
I: FindSlice<T>,
impl<I, S, T> FindSlice<T> for Stateful<I, S>where I: FindSlice<T>,
source§fn find_slice(&self, substr: T) -> Option<usize>
fn find_slice(&self, substr: T) -> Option<usize>
Returns the offset of the slice if it is found
source§impl<I: PartialEq, S: PartialEq> PartialEq<Stateful<I, S>> for Stateful<I, S>
impl<I: PartialEq, S: PartialEq> PartialEq<Stateful<I, S>> for Stateful<I, S>
source§impl<I: Stream, S: Clone + Debug> Stream for Stateful<I, S>
impl<I: Stream, S: Clone + Debug> Stream for Stateful<I, S>
§type IterOffsets = <I as Stream>::IterOffsets
type IterOffsets = <I as Stream>::IterOffsets
Iterate with the offset from the current location
source§fn iter_offsets(&self) -> Self::IterOffsets
fn iter_offsets(&self) -> Self::IterOffsets
Iterate with the offset from the current location
source§fn eof_offset(&self) -> usize
fn eof_offset(&self) -> usize
Returns the offaet to the end of the input
source§fn next_token(&self) -> Option<(Self, Self::Token)>
fn next_token(&self) -> Option<(Self, Self::Token)>
Split off the next token from the input
source§fn offset_for<P>(&self, predicate: P) -> Option<usize>where
P: Fn(Self::Token) -> bool,
fn offset_for<P>(&self, predicate: P) -> Option<usize>where P: Fn(Self::Token) -> bool,
Finds the offset of the next matching token
source§impl<I, S> StreamIsPartial for Stateful<I, S>where
I: StreamIsPartial,
impl<I, S> StreamIsPartial for Stateful<I, S>where I: StreamIsPartial,
§type PartialState = <I as StreamIsPartial>::PartialState
type PartialState = <I as StreamIsPartial>::PartialState
Whether the stream is currently partial or complete
source§fn complete(&mut self) -> Self::PartialState
fn complete(&mut self) -> Self::PartialState
Mark the stream is complete
source§fn restore_partial(&mut self, state: Self::PartialState)
fn restore_partial(&mut self, state: Self::PartialState)
Restore the stream back to its previous state
source§fn is_partial_supported() -> bool
fn is_partial_supported() -> bool
Report whether the
Stream
is can ever be incompletesource§fn is_partial(&self) -> bool
fn is_partial(&self) -> bool
Report whether the
Stream
is currently incompletesource§impl<I, S> UpdateSlice for Stateful<I, S>where
I: UpdateSlice,
S: Clone + Debug,
impl<I, S> UpdateSlice for Stateful<I, S>where I: UpdateSlice, S: Clone + Debug,
source§fn update_slice(self, inner: Self::Slice) -> Self
fn update_slice(self, inner: Self::Slice) -> Self
Convert an
Output
type to be used as Stream