Trait librsnek::api::method::NotEqual [] [src]

pub trait NotEqual {
    fn op_ne(&self, rt: &Runtime, rhs: &RtObject) -> Result<RtObject, Error> { ... }
    fn native_ne(&self, other: &Type) -> Result<Boolean, Error> { ... }
}

api_trait!(binary, self, __ne__, NotEqual, op_ne, native_ne, rs::Boolean);

Provided Methods

Default implementation of equals fallsbacks to !op_is

Default implementation of equals fallsbacks to op_is.

Implementors