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

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

Variants

ConsumedOk(T)EmptyOk(T)ConsumedErr(E)EmptyErr(Tracked<E>)

Methods

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

pub fn is_ok(&self) -> bool[src]

pub fn as_ref(&self) -> FastResult<&T, &E>[src]

pub fn and_then<F, T2>(self, f: F) -> F::Output where
    F: FnOnce(T) -> FastResult<T2, E>, 
[src]

pub fn map_err<F, E2>(self, f: F) -> FastResult<T, F::Output> where
    F: FnOnce(E) -> E2, 
[src]

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

pub fn map<F, T2>(self, f: F) -> FastResult<F::Output, E> where
    F: FnOnce(T) -> T2, 
[src]

Trait Implementations

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

impl<O, E> Into<Result<(O, Consumed<()>), Consumed<Tracked<E>>>> for FastResult<O, E>[src]

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

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

impl<O, E> From<Result<(O, Consumed<()>), Consumed<Tracked<E>>>> for FastResult<O, E>[src]

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

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

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

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

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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