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§
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.