Enum combine::error::FastResult [−][src]
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]
fn clone(&self) -> FastResult<T, E>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[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]
fn from(result: ParseResult2<O, E>) -> FastResult<O, E>
[src]
impl<O, E> Into<Result<(O, Consumed<()>), Consumed<Tracked<E>>>> for FastResult<O, E>
[src]
fn into(self) -> ParseResult2<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]
fn eq(&self, other: &FastResult<T, E>) -> bool
[src]
fn ne(&self, other: &FastResult<T, E>) -> bool
[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,
pub fn borrow(&self) -> &TⓘNotable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, F> Future for &'_ mut F where
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;
[src]
Notable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, F> Future for &'_ mut F where
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut TⓘNotable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, F> Future for &'_ mut F where
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;
[src]
Notable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, F> Future for &'_ mut F where
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;
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,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,