Struct winnow::stream::Stateful

source ·
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<'s>(i: &mut Stream<'s>) -> PResult<&'s str> {
  i.state.count();
  alpha1.parse_next(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> AsBStr for Stateful<I, S>
where I: AsBStr,

source§

fn as_bstr(&self) -> &[u8]

Casts the input type to a byte slice
source§

impl<I, S> AsBytes for Stateful<I, S>
where I: AsBytes,

source§

fn as_bytes(&self) -> &[u8]

Casts the input type to a byte slice
source§

impl<I, S> AsRef<I> for Stateful<I, S>

source§

fn as_ref(&self) -> &I

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<I: Clone, S: Clone> Clone for Stateful<I, S>

source§

fn clone(&self) -> Stateful<I, S>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<I, S, U> Compare<U> for Stateful<I, S>
where I: Compare<U>,

source§

fn compare(&self, other: U) -> CompareResult

Compares self to another value for equality
source§

impl<I: Debug, S: Debug> Debug for Stateful<I, S>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<I, S> Deref for Stateful<I, S>

§

type Target = I

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<I: Display, S> Display for Stateful<I, S>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<I, S, T> FindSlice<T> for Stateful<I, S>
where I: FindSlice<T>,

source§

fn find_slice(&self, substr: T) -> Option<Range<usize>>

Returns the offset of the slice if it is found
source§

impl<I, S> Location for Stateful<I, S>
where I: Location,

source§

fn location(&self) -> usize

Number of indices input has advanced since start of parsing
source§

impl<I, S> Offset<<Stateful<I, S> as Stream>::Checkpoint> for Stateful<I, S>
where I: Stream, S: Debug,

source§

fn offset_from(&self, other: &<Stateful<I, S> as Stream>::Checkpoint) -> usize

Offset between the first byte of start and the first byte of selfa Read more
source§

impl<I, S> Offset for Stateful<I, S>
where I: Stream, S: Clone + Debug,

source§

fn offset_from(&self, start: &Self) -> usize

Offset between the first byte of start and the first byte of selfa Read more
source§

impl<I: PartialEq, S: PartialEq> PartialEq for Stateful<I, S>

source§

fn eq(&self, other: &Stateful<I, S>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<I, E, S> Recover<E> for Stateful<I, S>
where I: Recover<E> + Stream, S: Clone + Debug,

Available on crate feature unstable-recover only.
source§

fn is_recovery_supported() -> bool

Report whether the Stream can save off errors for recovery

source§

fn record_err( &mut self, _token_start: &Self::Checkpoint, _err_start: &Self::Checkpoint, err: ErrMode<E> ) -> Result<(), ErrMode<E>>

Capture a top-level error Read more
source§

impl<I, S> SliceLen for Stateful<I, S>
where I: SliceLen,

source§

fn slice_len(&self) -> usize

Calculates the input length, as indicated by its name, and the name of the trait itself
source§

impl<I: Stream, S: Debug> Stream for Stateful<I, S>

§

type Token = <I as Stream>::Token

The smallest unit being parsed Read more
§

type Slice = <I as Stream>::Slice

Sequence of Tokens Read more
§

type IterOffsets = <I as Stream>::IterOffsets

Iterate with the offset from the current location
§

type Checkpoint = Checkpoint<<I as Stream>::Checkpoint, Stateful<I, S>>

A parse location within the stream
source§

fn iter_offsets(&self) -> Self::IterOffsets

Iterate with the offset from the current location
source§

fn eof_offset(&self) -> usize

Returns the offset to the end of the input
source§

fn next_token(&mut self) -> Option<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,

Finds the offset of the next matching token
source§

fn offset_at(&self, tokens: usize) -> Result<usize, Needed>

Get the offset for the number of tokens into the stream Read more
source§

fn next_slice(&mut self, offset: usize) -> Self::Slice

Split off a slice of tokens from the input Read more
source§

fn checkpoint(&self) -> Self::Checkpoint

Save the current parse location within the stream
source§

fn reset(&mut self, checkpoint: &Self::Checkpoint)

Revert the stream to a prior Self::Checkpoint Read more
source§

fn raw(&self) -> &dyn Debug

Return the inner-most stream
source§

fn finish(&mut self) -> Self::Slice

Advance to the end of the stream
source§

impl<I, S> StreamIsPartial for Stateful<I, S>
where I: StreamIsPartial,

§

type PartialState = <I as StreamIsPartial>::PartialState

Whether the stream is currently partial or complete
source§

fn complete(&mut self) -> Self::PartialState

Mark the stream is complete
source§

fn restore_partial(&mut self, state: Self::PartialState)

Restore the stream back to its previous state
source§

fn is_partial_supported() -> bool

Report whether the Stream is can ever be incomplete
source§

fn is_partial(&self) -> bool

Report whether the Stream is currently incomplete
source§

impl<I, S> UpdateSlice for Stateful<I, S>
where I: UpdateSlice, S: Clone + Debug,

source§

fn update_slice(self, inner: Self::Slice) -> Self

Convert an Output type to be used as Stream
source§

impl<I: Copy, S: Copy> Copy for Stateful<I, S>

source§

impl<I: Eq, S: Eq> Eq for Stateful<I, S>

source§

impl<I, S> StructuralPartialEq for Stateful<I, S>

Auto Trait Implementations§

§

impl<I, S> Freeze for Stateful<I, S>
where I: Freeze, S: Freeze,

§

impl<I, S> RefUnwindSafe for Stateful<I, S>

§

impl<I, S> Send for Stateful<I, S>
where I: Send, S: Send,

§

impl<I, S> Sync for Stateful<I, S>
where I: Sync, S: Sync,

§

impl<I, S> Unpin for Stateful<I, S>
where I: Unpin, S: Unpin,

§

impl<I, S> UnwindSafe for Stateful<I, S>
where I: UnwindSafe, S: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.