pub trait IntoObjectwhere
Self: Into<PyObjectRef>,{
// Provided method
fn into_object(self) -> PyObjectRef { ... }
}
Provided Methods§
fn into_object(self) -> PyObjectRef
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.