[][src]Trait ifeq::IfEq

pub trait IfEq<T> {
    fn if_eq(&self, is: T) -> bool;
}

If variable value is exactly the given parameter, returns true, or false.

Required methods

fn if_eq(&self, is: T) -> bool

Loading content...

Implementors

impl<T> IfEq<T> for T where
    T: PartialEq
[src]

Loading content...