pyo3/guide/src/SUMMARY.md

47 lines
1.5 KiB
Markdown
Raw Normal View History

# Summary
2020-08-30 09:08:58 +00:00
[Introduction](index.md)
---
- [Getting started](getting_started.md)
- [Python modules](module.md)
- [Python functions](function.md)
- [Function signatures](function/signature.md)
- [Error handling](function/error_handling.md)
- [Python classes](class.md)
- [Class customizations](class/protocols.md)
- [Basic object customization](class/object.md)
- [Emulating numeric types](class/numeric.md)
- [Emulating callable objects](class/call.md)
- [Type conversions](conversions.md)
2023-12-07 09:10:15 +00:00
- [Mapping of Rust types to Python types](conversions/tables.md)
- [Conversion traits](conversions/traits.md)
- [Python exceptions](exception.md)
- [Calling Python from Rust](python_from_rust.md)
- [Using `async` and `await`](async-await.md)
- [GIL, mutability and object types](types.md)
- [Parallelism](parallelism.md)
- [Debugging](debugging.md)
- [Features reference](features.md)
- [Memory management](memory.md)
- [Performance](performance.md)
- [Advanced topics](advanced.md)
- [Building and distribution](building_and_distribution.md)
2021-05-21 07:34:51 +00:00
- [Supporting multiple Python versions](building_and_distribution/multiple_python_versions.md)
- [Useful crates](ecosystem.md)
- [Logging](ecosystem/logging.md)
- [Using `async` and `await`](ecosystem/async-await.md)
- [FAQ and troubleshooting](faq.md)
2020-08-30 09:08:58 +00:00
---
[Appendix A: Migration guide](migration.md)
2023-10-15 20:55:36 +00:00
[Appendix B: Trait bounds](trait_bounds.md)
[Appendix C: Python typing hints](python_typing_hints.md)
2020-09-05 13:44:39 +00:00
[CHANGELOG](changelog.md)
---
[Contributing](contributing.md)