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 deprecated;
14pub mod exceptions;
15pub mod extract_argument;
16pub mod freelist;
17pub mod frompyobject;
18#[cfg(feature = "experimental-inspect")]
19pub mod introspection;
20pub mod panic;
21pub mod pycell;
22pub mod pyclass;
23pub mod pyclass_init;
24pub mod pyfunction;
25pub mod pymethods;
26pub mod pymodule;
27#[doc(hidden)]
28pub mod trampoline;
29pub mod unindent;
30pub mod wrap;