[][src]Trait type_freak::control::IfLessOrEqual

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

Returns input type if Lhs is less than or equals to Rhs.

Associated Types

type Output

Loading content...

Implementors

impl<Lhs, Rhs, Output> IfLessOrEqual<Lhs, Rhs> for Output where
    Lhs: IsLessOrEqual<Rhs>,
    Output: IfPredicate<LeEq<Lhs, Rhs>>,
    LeEq<Lhs, Rhs>: Boolean
[src]

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

Loading content...