pyo3/
impl_.rs

1#![allow(missing_docs)]
2
3//! Internals of PyO3 which are accessed by code expanded from PyO3's procedural macros.
4//!
5//! Usage of any of these APIs in downstream code is implicitly acknowledging that these
6//! APIs may may change at any time without documentation in the CHANGELOG and without
7//! breaking semver guarantees.
8
9pub mod callback;
10#[cfg(feature = "experimental-async")]
11pub mod coroutine;
12pub mod exceptions;
13pub mod extract_argument;
14pub mod freelist;
15pub mod frompyobject;
16pub(crate) mod not_send;
17pub mod panic;
18pub mod pycell;
19pub mod pyclass;
20pub mod pyclass_init;
21pub mod pyfunction;
22pub mod pymethods;
23pub mod pymodule;
24#[doc(hidden)]
25pub mod trampoline;
26pub mod wrap;
⚠️ Internal Docs ⚠️ Not Public API 👉 Official Docs Here