pyforge 0.3.0

High-performance Rust-Python bindings for Django 5.x — async-first, CPython 3.11+ only
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// PyForge: Deprecation warnings from PyForge 0.28 have been resolved.
// FromPyObject for #[pyclass] types now requires explicit opt-in via #[pyclass(from_py_object)].

pub struct HasAutomaticFromPyObject<const IS_CLONE: bool> {}

impl HasAutomaticFromPyObject<true> {
    pub const MSG: () = ();
}

impl HasAutomaticFromPyObject<false> {
    pub const MSG: () = ();
}