Enum combine::error::FastResult [−][src]
pub enum FastResult<T, E> { ConsumedOk(T), EmptyOk(T), ConsumedErr(E), EmptyErr(Tracked<E>), }
Variants
EmptyErr(Tracked<E>)
Implementations
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]
F: FnOnce(T) -> FastResult<T2, E>,
pub fn map_err<F, E2>(self, f: F) -> FastResult<T, F::Output> where
F: FnOnce(E) -> E2,
[src]
F: FnOnce(E) -> E2,
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]
F: FnOnce(T) -> T2,
Trait Implementations
impl<T: Clone, E: Clone> Clone for FastResult<T, E>
[src][+]
impl<T: Copy, E: Copy> Copy for FastResult<T, E>
[src]
impl<T: Debug, E: Debug> Debug for FastResult<T, E>
[src][+]
impl<O, E> From<Result<(O, Consumed<()>), Consumed<Tracked<E>>>> for FastResult<O, E>
[src][+]
impl<O, E> Into<Result<(O, Consumed<()>), Consumed<Tracked<E>>>> for FastResult<O, E>
[src][+]
impl<T, E> Into<Result<Consumed<T>, Consumed<Tracked<E>>>> for FastResult<T, E>
[src][+]
impl<T: PartialEq, E: PartialEq> PartialEq<FastResult<T, E>> for FastResult<T, E>
[src][+]
impl<T, E> StructuralPartialEq for FastResult<T, E>
[src]
Auto Trait Implementations
impl<T, E> RefUnwindSafe for FastResult<T, E> where
E: RefUnwindSafe,
T: RefUnwindSafe,
E: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, E> Send for FastResult<T, E> where
E: Send,
T: Send,
E: Send,
T: Send,
impl<T, E> Sync for FastResult<T, E> where
E: Sync,
T: Sync,
E: Sync,
T: Sync,
impl<T, E> Unpin for FastResult<T, E> where
E: Unpin,
T: Unpin,
E: Unpin,
T: Unpin,
impl<T, E> UnwindSafe for FastResult<T, E> where
E: UnwindSafe,
T: UnwindSafe,
E: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,