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-inspect")]
11pub mod concat;
12#[cfg(feature = "experimental-async")]
13pub mod coroutine;
14pub mod exceptions;
15pub mod extract_argument;
16pub mod freelist;
17pub mod frompyobject;
18pub(crate) mod not_send;
19pub mod panic;
20pub mod pycell;
21pub mod pyclass;
22pub mod pyclass_init;
23pub mod pyfunction;
24pub mod pymethods;
25pub mod pymodule;
26#[doc(hidden)]
27pub mod trampoline;
28pub mod wrap;
⚠️ Internal Docs ⚠️ Not Public API 👉 Official Docs Here