Struct Stateful
pub struct Stateful<I, S> {
pub input: I,
pub state: S,
}
Available on crate feature
dep_winnow
only.Expand description
Thread global state through your parsers
Use cases
- Recursion checks
- Error recovery
- Debugging
§Example
#[derive(Debug)]
struct State<'s>(&'s mut u32);
impl<'s> State<'s> {
fn count(&mut self) {
*self.0 += 1;
}
}
type Stream<'is> = Stateful<&'is str, State<'is>>;
fn word<'s>(i: &mut Stream<'s>) -> PResult<&'s str> {
i.state.count();
alpha1.parse_next(i)
}
let data = "Hello";
let mut state = 0;
let input = Stream { input: data, state: State(&mut state) };
let output = word.parse(input).unwrap();
assert_eq!(state, 1);
Fields§
§input: I
Inner input being wrapped in state
state: S
User-provided state
Trait Implementations§
§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>,
§fn compare(&self, other: U) -> CompareResult
fn compare(&self, other: U) -> CompareResult
Compares self to another value for equality
§impl<I, S> Offset<<Stateful<I, S> as Stream>::Checkpoint> for Stateful<I, S>
impl<I, S> Offset<<Stateful<I, S> as Stream>::Checkpoint> for Stateful<I, S>
§fn offset_from(&self, other: &<Stateful<I, S> as Stream>::Checkpoint) -> usize ⓘ
fn offset_from(&self, other: &<Stateful<I, S> as Stream>::Checkpoint) -> usize ⓘ
§impl<I, S> Stream for Stateful<I, S>
impl<I, S> 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
§type Checkpoint = Checkpoint<<I as Stream>::Checkpoint, Stateful<I, S>>
type Checkpoint = Checkpoint<<I as Stream>::Checkpoint, Stateful<I, S>>
A parse location within the stream
§fn iter_offsets(&self) -> <Stateful<I, S> as Stream>::IterOffsets
fn iter_offsets(&self) -> <Stateful<I, S> as Stream>::IterOffsets
Iterate with the offset from the current location
§fn eof_offset(&self) -> usize ⓘ
fn eof_offset(&self) -> usize ⓘ
Returns the offset to the end of the input
§fn next_token(&mut self) -> Option<<Stateful<I, S> as Stream>::Token> ⓘ
fn next_token(&mut self) -> Option<<Stateful<I, S> as Stream>::Token> ⓘ
Split off the next token from the input
§fn offset_for<P>(&self, predicate: P) -> Option<usize> ⓘ
fn offset_for<P>(&self, predicate: P) -> Option<usize> ⓘ
Finds the offset of the next matching token
§fn offset_at(&self, tokens: usize) -> Result<usize, Needed> ⓘ
fn offset_at(&self, tokens: usize) -> Result<usize, Needed> ⓘ
Get the offset for the number of
tokens
into the stream Read more§fn next_slice(&mut self, offset: usize) -> <Stateful<I, S> as Stream>::Slice
fn next_slice(&mut self, offset: usize) -> <Stateful<I, S> as Stream>::Slice
Split off a slice of tokens from the input Read more
§fn checkpoint(&self) -> <Stateful<I, S> as Stream>::Checkpoint
fn checkpoint(&self) -> <Stateful<I, S> as Stream>::Checkpoint
Save the current parse location within the stream
§fn reset(&mut self, checkpoint: &<Stateful<I, S> as Stream>::Checkpoint)
fn reset(&mut self, checkpoint: &<Stateful<I, S> as Stream>::Checkpoint)
Revert the stream to a prior
Self::Checkpoint
Read more§fn peek_token(&self) -> Option<(Self, Self::Token)> ⓘwhere
Self: Clone,
fn peek_token(&self) -> Option<(Self, Self::Token)> ⓘwhere
Self: Clone,
Split off the next token from the input
§fn peek_slice(&self, offset: usize) -> (Self, Self::Slice) ⓘwhere
Self: Clone,
fn peek_slice(&self, offset: usize) -> (Self, Self::Slice) ⓘwhere
Self: Clone,
Split off a slice of tokens from the input
§fn peek_finish(&self) -> (Self, Self::Slice) ⓘwhere
Self: Clone,
fn peek_finish(&self) -> (Self, Self::Slice) ⓘwhere
Self: Clone,
Advance to the end of the stream
§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
§fn complete(&mut self) -> <Stateful<I, S> as StreamIsPartial>::PartialState
fn complete(&mut self) -> <Stateful<I, S> as StreamIsPartial>::PartialState
Mark the stream is complete
§fn restore_partial(
&mut self,
state: <Stateful<I, S> as StreamIsPartial>::PartialState,
)
fn restore_partial( &mut self, state: <Stateful<I, S> as StreamIsPartial>::PartialState, )
Restore the stream back to its previous state
§fn is_partial_supported() -> bool
fn is_partial_supported() -> bool
Report whether the
Stream
is can ever be incomplete§fn is_partial(&self) -> bool
fn is_partial(&self) -> bool
Report whether the
Stream
is currently incomplete§impl<I, S> UpdateSlice for Stateful<I, S>
impl<I, S> UpdateSlice for Stateful<I, S>
impl<I, S> Copy for Stateful<I, S>
impl<I, S> Eq for Stateful<I, S>
impl<I, S> StructuralPartialEq for Stateful<I, S>
Auto Trait Implementations§
impl<I, S> Freeze for Stateful<I, S>
impl<I, S> RefUnwindSafe for Stateful<I, S>where
I: RefUnwindSafe,
S: RefUnwindSafe,
impl<I, S> Send for Stateful<I, S>
impl<I, S> Sync for Stateful<I, S>
impl<I, S> Unpin for Stateful<I, S>
impl<I, S> UnwindSafe for Stateful<I, S>where
I: UnwindSafe,
S: UnwindSafe,
Blanket Implementations§
§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
The alignment of this type in bytes.
Source§fn byte_align(&self) -> usize ⓘ
fn byte_align(&self) -> usize ⓘ
Returns the alignment of this type in bytes.
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T, R> Chain<R> for Twhere
T: ?Sized,
impl<T, R> Chain<R> for Twhere
T: ?Sized,
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> ExtAny for T
impl<T> ExtAny for T
Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§impl<T> ExtMem for Twhere
T: ?Sized,
impl<T> ExtMem for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Know whether dropping values of this type matters, in compile-time.
Source§fn mem_align_of_val(&self) -> usize ⓘ
fn mem_align_of_val(&self) -> usize ⓘ
Returns the alignment of the pointed-to value in bytes. Read more
Source§fn mem_size_of_val(&self) -> usize ⓘ
fn mem_size_of_val(&self) -> usize ⓘ
Returns the size of the pointed-to value in bytes. Read more
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
Returns
true
if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
Forgets about
self
without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
Available on crate feature
unsafe_layout
only.Returns the value of type
T
represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
Available on crate feature
unsafe_layout
only.Returns the value of type
T
represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
Available on crate feature
unsafe_slice
only.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Hook for T
impl<T> Hook for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError> ⓘ
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError> ⓘ
Returns the layout of the type.
§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
§unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
Returns whether the given value has been niched. Read more
§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
Writes data to
out
indicating that a T
is niched.