[][src]Enum nom::IResult

pub enum IResult<I, O, E = u32> {
    Done(I, O),
    Error(Err<E>),
    Incomplete(Needed),
}

Holds the result of parsing functions

It depends on I, the input type, O, the output type, and E, the error type (by default u32)

Variants

indicates a correct parsing, the first field containing the rest of the unparsed data, the second field contains the parsed data

contains a Err, an enum that can indicate an error code, a position in the input, and a pointer to another error, making a list of errors in the parsing tree

Incomplete contains a Needed, an enum than can represent a known quantity of input data, or unknown

Methods

impl<I, O, E> IResult<I, O, E>
[src]

Maps a IResult<I, O, E> to IResult<I, O, N> by appling a function to a contained Error value, leaving Done and Incomplete value untouched.

Unwrap the contained Error(E) value, or panic if the IResult is not Error.

Convert the IResult to a std::result::Result

Convert the IResult to a std::result::Result, or panic if the IResult is Incomplete

impl<I, O, E> IResult<I, O, E>
[src]

Maps a IResult<I, O, E> to IResult<I, N, E> by appling a function to a contained Done value, leaving Error and Incomplete value untouched.

Maps a IResult<I, O, E> to IResult<I, O, E> by appling a function to a contained Incomplete value, leaving Done and Error value untouched.

Unwrap the contained Done(I, O) value, or panic if the IResult is not Done.

Unwrap the contained Done(I, O) value or a default if the IResult is not Done.

Unwrap the contained Incomplete(n) value, or panic if the IResult is not Incomplete.

Trait Implementations

impl<'a, I, O, E> GetInput<&'a [I]> for IResult<&'a [I], O, E>
[src]

impl<O, E> GetInput<()> for IResult<(), O, E>
[src]

impl<'a, O, E> GetInput<&'a str> for IResult<&'a str, O, E>
[src]

impl<'a, I, O, E> GetOutput<&'a [O]> for IResult<I, &'a [O], E>
[src]

impl<I, E> GetOutput<()> for IResult<I, (), E>
[src]

impl<'a, I, E> GetOutput<&'a str> for IResult<I, &'a str, E>
[src]

impl<I: Clone, O: Clone, E: Clone> Clone for IResult<I, O, E>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<I: Eq, O: Eq, E: Eq> Eq for IResult<I, O, E>
[src]

impl<I: PartialEq, O: PartialEq, E: PartialEq> PartialEq<IResult<I, O, E>> for IResult<I, O, E>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<I: Debug, O: Debug, E: Debug> Debug for IResult<I, O, E>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<I, O, E> Send for IResult<I, O, E> where
    E: Send,
    I: Send,
    O: Send

impl<I, O, E> Sync for IResult<I, O, E> where
    E: Sync,
    I: Sync,
    O: Sync

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more