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;
10pub mod concat;
11#[cfg(feature = "experimental-async")]
12pub mod coroutine;
13pub mod exceptions;
14pub mod extract_argument;
15pub mod freelist;
16pub mod frompyobject;
17#[cfg(feature = "experimental-inspect")]
18pub mod introspection;
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;