Enum combine::primitives::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]

[src]

[src]

Trait Implementations

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

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

[src]

This method tests for !=.

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

[src]

Formats the value using the given formatter.

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]

[src]

Performs the conversion.