Struct winnow::error::ContextError

source ·
pub struct ContextError<C = StrContext> { /* private fields */ }
Expand description

Accumulate context while backtracking errors

Implementations§

source§

impl<C> ContextError<C>

source

pub fn new() -> Self

Create an empty error

source

pub fn context(&self) -> impl Iterator<Item = &C>

Available on crate feature alloc only.

Access context from Parser::context

source

pub fn cause(&self) -> Option<&(dyn Error + Send + Sync + 'static)>

Available on crate feature std only.

Originating std::error::Error

Trait Implementations§

source§

impl<C, I: Stream> AddContext<I, C> for ContextError<C>

source§

fn add_context( self, _input: &I, _token_start: &<I as Stream>::Checkpoint, context: C ) -> Self

Append to an existing error custom data Read more
source§

impl<C: Clone> Clone for ContextError<C>

source§

fn clone(&self) -> Self

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<C: Debug> Debug for ContextError<C>

source§

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

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

impl<C> Default for ContextError<C>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for ContextError<StrContext>

source§

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

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

impl<C> ErrorConvert<ContextError<C>> for ContextError<C>

source§

fn convert(self) -> ContextError<C>

Transform to another error type
source§

impl<C, I, E: Error + Send + Sync + 'static> FromExternalError<I, E> for ContextError<C>

Available on crate feature std only.
source§

fn from_external_error(_input: &I, _kind: ErrorKind, e: E) -> Self

Like ParserError::from_error_kind but also include an external error.
source§

impl<I: Stream, C> FromRecoverableError<I, ContextError<C>> for ContextError<C>

Available on crate feature unstable-recover only.
source§

fn from_recoverable_error( _token_start: &<I as Stream>::Checkpoint, _err_start: &<I as Stream>::Checkpoint, _input: &I, e: Self ) -> Self

Capture context from when an error was recovered
source§

impl<I: Stream, C> ParserError<I> for ContextError<C>

source§

fn from_error_kind(_input: &I, _kind: ErrorKind) -> Self

Creates an error from the input position and an ErrorKind
source§

fn append( self, _input: &I, _token_start: &<I as Stream>::Checkpoint, _kind: ErrorKind ) -> Self

Like ParserError::from_error_kind but merges it with the existing error. Read more
source§

fn or(self, other: Self) -> Self

Combines errors from two different parse branches. Read more
source§

fn assert(input: &I, _message: &'static str) -> Self
where I: Debug,

Process a parser assertion
source§

impl<C: PartialEq> PartialEq for ContextError<C>

source§

fn eq(&self, other: &Self) -> 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.

Auto Trait Implementations§

§

impl<C> Freeze for ContextError<C>

§

impl<C = StrContext> !RefUnwindSafe for ContextError<C>

§

impl<C> Send for ContextError<C>
where C: Send,

§

impl<C> Sync for ContextError<C>
where C: Sync,

§

impl<C> Unpin for ContextError<C>
where C: Unpin,

§

impl<C = StrContext> !UnwindSafe for ContextError<C>

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.