pub trait Is<T> { // Required method fn is(&self, is: T) -> bool; }
If variable is equal with the given parameter returns true, otherwise false.