Struct combine::error::Tracked [−][src]
pub struct Tracked<E> { pub error: E, // some fields omitted }
Expand description
Error wrapper which lets parsers track which parser in a sequence of sub-parsers has emitted
the error. Tracked::from
can be used to construct this and it should otherwise be
ignored outside of combine.
Fields
error: E
The error returned
Trait Implementations
Auto Trait Implementations
impl<E> RefUnwindSafe for Tracked<E> where
E: RefUnwindSafe,
impl<E> UnwindSafe for Tracked<E> where
E: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more