pub trait AsyncIterNextConvertFallback {
type Value;
// Required method
fn convert<'py, Target>(self, py: Python<'py>) -> PyResult<Target>
where Self::Value: IntoPyCallbackOutput<'py, Target>;
}Required Associated Types§
Required Methods§
fn convert<'py, Target>(self, py: Python<'py>) -> PyResult<Target>where
Self::Value: IntoPyCallbackOutput<'py, Target>,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".