Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 401 Bytes

advanced.md

File metadata and controls

7 lines (4 loc) · 401 Bytes

Advanced topics

FFI

PyO3 exposes much of Python's C API through the ffi module.

The C API is naturally unsafe and requires you to manage reference counts, errors and specific invariants yourself. Please refer to the C API Reference Manual and The Rustonomicon before using any function from that API.