pub trait PyClass__getattribute__SlotFragment<T>: Sized {
    // Provided method
    unsafe fn __getattribute__(
        self,
        py: Python<'_>,
        slf: *mut PyObject,
        attr: *mut PyObject
    ) -> PyResult<*mut PyObject> { ... }
}

Provided Methods§

source

unsafe fn __getattribute__( self, py: Python<'_>, slf: *mut PyObject, attr: *mut PyObject ) -> PyResult<*mut PyObject>

§Safety: _slf and _attr must be valid non-null Python objects

Object Safety§

This trait is not object safe.

Implementors§

⚠️ Internal Docs ⚠️ Not Public API 👉 Official Docs Here