Trait Hashable

Source
pub trait Hashable: PyPayload {
    const __OWN_METHOD_DEFS: &'static [PyMethodDef] = _;

    // Required method
    fn hash(zelf: &Py<Self>, vm: &VirtualMachine) -> PyResult<PyHash>;

    // Provided methods
    fn slot_hash(zelf: &PyObject, vm: &VirtualMachine) -> PyResult<PyHash> { ... }
    fn __hash__(zelf: PyObjectRef, vm: &VirtualMachine) -> PyResult<PyHash> { ... }
    fn __extend_py_class(ctx: &Context, class: &'static Py<PyType>) { ... }
    fn __extend_slots(slots: &mut PyTypeSlots) { ... }
}

Provided Associated Constants§

Source

const __OWN_METHOD_DEFS: &'static [PyMethodDef] = _

Required Methods§

Source

fn hash(zelf: &Py<Self>, vm: &VirtualMachine) -> PyResult<PyHash>

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Morty Proxy This is a proxified and sanitized view of the page, visit original site.