Enum synom::IResult
[−]
[src]
pub enum IResult<I, O> { Done(I, O), Error, }
The result of a parser.
Variants
Done(I, O)
Parsing succeeded. The first field contains the rest of the unparsed data and the second field contains the parse result.
Error
Parsing failed.
Methods
impl<'a, O> IResult<&'a str, O>
[src]
fn expect(self, name: &str) -> O
Unwraps the result, asserting the the parse is complete. Panics with a message based on the given string if the parse failed or is incomplete.
extern crate syn; #[macro_use] extern crate synom; use syn::Ty; use syn::parse::ty; // One or more Rust types separated by commas. named!(comma_separated_types -> Vec<Ty>, separated_nonempty_list!(punct!(","), ty) ); fn main() { let input = "&str, Map<K, V>, String"; let parsed = comma_separated_types(input).expect("comma-separated types"); assert_eq!(parsed.len(), 3); println!("{:?}", parsed); }
Trait Implementations
impl<I: Debug, O: Debug> Debug for IResult<I, O>
[src]
impl<I: PartialEq, O: PartialEq> PartialEq for IResult<I, O>
[src]
fn eq(&self, __arg_0: &IResult<I, O>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &IResult<I, O>) -> bool
This method tests for !=
.
impl<I: Eq, O: Eq> Eq for IResult<I, O>
[src]
impl<I: Clone, O: Clone> Clone for IResult<I, O>
[src]
fn clone(&self) -> IResult<I, O>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more