Enum winnow::error::TreeError

source ·
pub enum TreeError<I, C = StrContext> {
    Base(TreeErrorBase<I>),
    Stack {
        base: Box<Self>,
        stack: Vec<TreeErrorFrame<I, C>>,
    },
    Alt(Vec<Self>),
}
Available on crate feature std only.
Expand description

Trace all error paths, particularly for tests

Variants§

§

Base(TreeErrorBase<I>)

Initial error that kicked things off

§

Stack

Traces added to the error while walking back up the stack

Fields

§base: Box<Self>

Initial error that kicked things off

§stack: Vec<TreeErrorFrame<I, C>>

Traces added to the error while walking back up the stack

§

Alt(Vec<Self>)

All failed branches of an alt

Implementations§

source§

impl<'i, I: ToOwned, C> TreeError<&'i I, C>
where &'i I: Stream + Clone, <I as ToOwned>::Owned: Clone,

source

pub fn into_owned(self) -> TreeError<<I as ToOwned>::Owned, C>

Obtaining ownership

source§

impl<I, C> TreeError<I, C>
where I: Stream + Clone,

source

pub fn map_input<I2: Clone, O: Clone + Fn(I) -> I2>( self, op: O ) -> TreeError<I2, C>

Translate the input type

Trait Implementations§

source§

impl<I, C> AddContext<I, C> for TreeError<I, C>
where I: Stream + Clone,

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<I: Debug, C: Debug> Debug for TreeError<I, C>

source§

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

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

impl<I: Stream + Clone + Display, C: Display> Display for TreeError<I, C>

source§

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

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

impl<I: Stream + Clone + Debug + Display + Sync + Send + 'static, C: Display + Debug> Error for TreeError<I, C>

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl<I, C, E: Error + Send + Sync + 'static> FromExternalError<I, E> for TreeError<I, C>
where I: Stream + Clone,

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 + Clone, C> FromRecoverableError<I, TreeError<I, C>> for TreeError<I, 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, C> ParserError<I> for TreeError<I, C>
where I: Stream + Clone,

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

Auto Trait Implementations§

§

impl<I, C> Freeze for TreeError<I, C>
where I: Freeze,

§

impl<I, C = StrContext> !RefUnwindSafe for TreeError<I, C>

§

impl<I, C> Send for TreeError<I, C>
where I: Send, C: Send,

§

impl<I, C> Sync for TreeError<I, C>
where I: Sync, C: Sync,

§

impl<I, C> Unpin for TreeError<I, C>
where I: Unpin, C: Unpin,

§

impl<I, C = StrContext> !UnwindSafe for TreeError<I, 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> 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.