pub trait IntoPyPointer {
    fn into_ptr(self) -> *mut PyObject;
}
Expand description

This trait allows retrieving the underlying FFI pointer from Python objects.

Required Methods

Retrieves the underlying FFI pointer. Whether pointer owned or borrowed depends on implementation.

Implementations on Foreign Types

Convert None into a null pointer.

Implementors