pom 0.4.0

PEG parser combinators using operator overloading without macros.
Documentation
1
2
3
4
5
6
7
8
9
/// Parser error.
#[derive(Debug, PartialEq)]
pub enum Error {
	Incomplete,
	Mismatch { message: String, position: usize },
}

/// Parser result.
pub type Result<O> = ::std::result::Result<O, Error>;