[][src]Trait type_freak::control::IfElseEqual

pub trait IfElseEqual<Lhs, Rhs, Else> {
    type Output;
}

Returns output if left-hand-site equals to right-hand-side, otherwise returns Else.

Associated Types

type Output

Loading content...

Implementors

impl<Lhs, Rhs, Output, Else> IfElseEqual<Lhs, Rhs, Else> for Output where
    Lhs: IsEqual<Rhs>,
    Output: IfElsePredicate<Eq<Lhs, Rhs>, Else>,
    Eq<Lhs, Rhs>: Boolean
[src]

type Output = IfElsePredicateOutput<Output, Eq<Lhs, Rhs>, Else>

Loading content...