Enum combine::error::FastResult[][src]

pub enum FastResult<T, E> {
    ConsumedOk(T),
    EmptyOk(T),
    ConsumedErr(E),
    EmptyErr(Tracked<E>),
}

Variants

Methods

impl<T, E> FastResult<T, E>
[src]

impl<T, E> FastResult<T, E>
[src]

Trait Implementations

impl<T: Clone, E: Clone> Clone for FastResult<T, E>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: PartialEq, E: PartialEq> PartialEq for FastResult<T, E>
[src]

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

This method tests for !=.

impl<T: Debug, E: Debug> Debug for FastResult<T, E>
[src]

Formats the value using the given formatter. Read more

impl<T: Copy, E: Copy> Copy for FastResult<T, E>
[src]

impl<T, E> Into<Result<Consumed<T>, Consumed<Tracked<E>>>> for FastResult<T, E>
[src]

Performs the conversion.

impl<O, E> Into<ParseResult2<O, E>> for FastResult<O, E>
[src]

Performs the conversion.

impl<O, E> From<ParseResult2<O, E>> for FastResult<O, E>
[src]

Performs the conversion.

Auto Trait Implementations

impl<T, E> Send for FastResult<T, E> where
    E: Send,
    T: Send

impl<T, E> Sync for FastResult<T, E> where
    E: Sync,
    T: Sync