[][src]Trait type_freak::control::IfEqual

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

Returns input type if Lhs equals to Rhs.

Associated Types

type Output

Loading content...

Implementors

impl<Lhs, Rhs, Output> IfEqual<Lhs, Rhs> for Output where
    Lhs: IsEqual<Rhs>,
    Output: IfPredicate<Eq<Lhs, Rhs>>,
    Eq<Lhs, Rhs>: Boolean
[src]

type Output = IfPredicateOutput<Output, Eq<Lhs, Rhs>>

Loading content...