Enum pest::error::ErrorVariant  
source · [−]pub enum ErrorVariant<R> {
    ParsingError {
        positives: Vec<R>,
        negatives: Vec<R>,
    },
    CustomError {
        message: String,
    },
}Expand description
Different kinds of parsing errors.
Variants
ParsingError
Generated parsing error with expected and unexpected Rules
CustomError
Fields
message: StringShort explanation
Custom error with a message
Implementations
sourceimpl<R: RuleType> ErrorVariant<R>
 
impl<R: RuleType> ErrorVariant<R>
sourcepub fn message(&self) -> Cow<'_, str>
 
pub fn message(&self) -> Cow<'_, str>
Returns the error message for ErrorVariant
If ErrorVariant is CustomError, it returns a
Cow::Borrowed reference to message. If ErrorVariant is ParsingError, a
Cow::Owned containing “expected ErrorVariant::ParsingError::positives ErrorVariant::ParsingError::negatives” is returned.
Examples
let variant = ErrorVariant::<()>::CustomError {
    message: String::from("unexpected error")
};
println!("{}", variant.message());Trait Implementations
sourceimpl<R: Clone> Clone for ErrorVariant<R>
 
impl<R: Clone> Clone for ErrorVariant<R>
sourcefn clone(&self) -> ErrorVariant<R>
 
fn clone(&self) -> ErrorVariant<R>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<R: Debug> Debug for ErrorVariant<R>
 
impl<R: Debug> Debug for ErrorVariant<R>
sourceimpl<R: RuleType> Display for ErrorVariant<R>
 
impl<R: RuleType> Display for ErrorVariant<R>
sourceimpl<R> Error for ErrorVariant<R> where
    Self: Debug + Display, 
 
impl<R> Error for ErrorVariant<R> where
    Self: Debug + Display, 
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
 
fn description(&self) -> &str
👎 Deprecated since 1.42.0: 
use the Display impl or to_string()
sourceimpl<R: Hash> Hash for ErrorVariant<R>
 
impl<R: Hash> Hash for ErrorVariant<R>
sourceimpl<R: PartialEq> PartialEq<ErrorVariant<R>> for ErrorVariant<R>
 
impl<R: PartialEq> PartialEq<ErrorVariant<R>> for ErrorVariant<R>
sourcefn eq(&self, other: &ErrorVariant<R>) -> bool
 
fn eq(&self, other: &ErrorVariant<R>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ErrorVariant<R>) -> bool
 
fn ne(&self, other: &ErrorVariant<R>) -> bool
This method tests for !=.
impl<R: Eq> Eq for ErrorVariant<R>
impl<R> StructuralEq for ErrorVariant<R>
impl<R> StructuralPartialEq for ErrorVariant<R>
Auto Trait Implementations
impl<R> RefUnwindSafe for ErrorVariant<R> where
    R: RefUnwindSafe, 
impl<R> Send for ErrorVariant<R> where
    R: Send, 
impl<R> Sync for ErrorVariant<R> where
    R: Sync, 
impl<R> Unpin for ErrorVariant<R> where
    R: Unpin, 
impl<R> UnwindSafe for ErrorVariant<R> where
    R: UnwindSafe, 
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more