[][src]Trait ifeq::Is

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

If variable is equal with the given parameter returns true, otherwise false.

Required methods

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

Loading content...

Implementors

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

Loading content...