pub trait HashCode {
    fn hash_code(&self) -> i32;
}
Expand description

The hashCode function on all Java Objects

Required Methods

Returns a Java hash code value for the object.

This follows the principles of the java.lang.Object.hashCode method.

Implementations on Foreign Types

Implementors