yarpl 0.0.23

Yet Another Rust Parsing Library
1
2
3
4
5
use std::fmt::Debug;
use crate::*;

/// The type returned from `Parser::parse`.
pub type Result<T> = std::result::Result<T, Error>;