[][src]Trait lite_parser::traits::Error

pub trait Error {
    type Position;
    fn reasons(&self) -> &[(Self::Position, &'static str)];
fn add_reason(self, position: Self::Position, reason: &'static str) -> Self; }

Associated Types

Loading content...

Required methods

fn reasons(&self) -> &[(Self::Position, &'static str)]

fn add_reason(self, position: Self::Position, reason: &'static str) -> Self

Loading content...

Implementors

impl Error for SimpleError[src]

type Position = SimplePosition

Loading content...