[][src]Trait type_freak::control::IfElsePredicate

pub trait IfElsePredicate<Cond, ElseOutput> where
    Cond: Boolean
{ type Output; }

Returns input type if Cond evaluates to True, otherwise returns Else.

Associated Types

type Output

Loading content...

Implementors

impl<TrueOutput, FalseOutput> IfElsePredicate<B0, FalseOutput> for TrueOutput[src]

type Output = FalseOutput

impl<TrueOutput, FalseOutput> IfElsePredicate<B1, FalseOutput> for TrueOutput[src]

type Output = TrueOutput

Loading content...