[][src]Trait pahs::Recoverable

pub trait Recoverable {
    pub fn recoverable(&self) -> bool;
}

Indicates if an error allows a parent parser to recover and try something else.

Errors usually are irrecoverable if the input is well-formed, but other constraints failed.

Required methods

pub fn recoverable(&self) -> bool[src]

Returns true if the parse failure is recoverable, false otherwise.

Loading content...

Implementors

Loading content...