pub trait IntoPyCallbackOutput<'py, Target>: Sealed<'py, Target> {
// Required method
fn convert(self, py: Python<'py>) -> PyResult<Target>;
}Expand description
Convert the result of callback function into the appropriate return value.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".