Skip to main content

IntoObject

Trait IntoObject 

Source
pub trait IntoObject
where Self: Into<PyObjectRef>,
{ // Provided method fn into_object(self) -> PyObjectRef { ... } }

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> IntoObject for T
where T: Into<PyObjectRef>,