pyo3-utils 0.4.0

Utilities for PyO3
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// See: <https://doc.rust-lang.org/rustdoc/unstable-features.html#extensions-to-the-doc-attribute>
#![cfg_attr(
    docsrs,
    feature(doc_cfg, doc_auto_cfg, doc_cfg_hide),
    doc(cfg_hide(doc))
)]

#[cfg(feature = "unstable-from-py-dict")]
pub mod from_py_dict;
pub mod py_match;
pub mod py_wrapper;
#[cfg(feature = "unstable-serde")]
pub mod serde;
pub mod ungil;