pub trait PyClass__mul__SlotFragment<T>: Sized {
    // Provided method
    unsafe fn __mul__(
        self,
        py: Python<'_>,
        _slf: *mut PyObject,
        _other: *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.