Enum winnow::error::VerboseErrorKind
source · pub enum VerboseErrorKind<C = &'static str> {
Context(C),
Winnow(ErrorKind),
}
👎Deprecated since 0.5.8: Replaced with
ContextError
Expand description
Deprecated, replaced with ContextError
Variants§
Context(C)
👎Deprecated since 0.5.8: Replaced with
ContextError
Static string added by the context
function
Winnow(ErrorKind)
👎Deprecated since 0.5.8: Replaced with
ContextError
Error kind given by various parsers
Trait Implementations§
source§impl<C: Clone> Clone for VerboseErrorKind<C>
impl<C: Clone> Clone for VerboseErrorKind<C>
source§fn clone(&self) -> VerboseErrorKind<C>
fn clone(&self) -> VerboseErrorKind<C>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<C: Debug> Debug for VerboseErrorKind<C>
impl<C: Debug> Debug for VerboseErrorKind<C>
source§impl<C: PartialEq> PartialEq<VerboseErrorKind<C>> for VerboseErrorKind<C>
impl<C: PartialEq> PartialEq<VerboseErrorKind<C>> for VerboseErrorKind<C>
source§fn eq(&self, other: &VerboseErrorKind<C>) -> bool
fn eq(&self, other: &VerboseErrorKind<C>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.