pub trait IntoParser<'a, R> {
// Required method
fn into_parser(self) -> Parser<'a, R>;
}Expand description
Performs a conversion for any type that can be converted into a Parser.
pub trait IntoParser<'a, R> {
// Required method
fn into_parser(self) -> Parser<'a, R>;
}Performs a conversion for any type that can be converted into a Parser.