[][src]Enum join_impl::expr_chain::expr::ErrExpr

pub enum ErrExpr {
    Or(Expr),
    OrElse(Expr),
    MapErr(Expr),
}

ErrExpr used to define types of expression which will be evaluated in case of Err or None.

Variants

Or(Expr)

.or(Expr)

OrElse(Expr)

.or_else(Expr)

MapErr(Expr)

.map_err(Expr)

Trait Implementations

impl InnerExpr for ErrExpr[src]

impl Clone for ErrExpr[src]

impl Eq for ErrExpr[src]

impl PartialEq<ErrExpr> for ErrExpr[src]

impl Debug for ErrExpr[src]

impl StructuralPartialEq for ErrExpr[src]

impl StructuralEq for ErrExpr[src]

impl ToTokens for ErrExpr[src]

Auto Trait Implementations

impl !Send for ErrExpr

impl !Sync for ErrExpr

impl Unpin for ErrExpr

impl UnwindSafe for ErrExpr

impl !RefUnwindSafe for ErrExpr

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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