cpy-rs
is a Rust library that aids in creating bindings from Rust to C++ and Python. It provides a set of macros to easily export Rust structures, enums, and functions to both C/C++ and Python.
Note: It's recommended to end the function signature with
_c
and_py
when usingcpy_fn_c
andcpy_fn_py
. When using such functions in C++ and Python, the suffix will be removed by the macro. The suffix is also not necessary inside thecpy_module
. Check the following example as a guide.
The repository contains an example project that demonstrates how to use cpy-rs
to create bindings.
```rust use cpybinder::{cpyenum, cpyfn, cpyfnc, cpyfnpy, cpymodule, cpy_struct};
enum Material { Plastic, Rubber, }
struct Size2D { width: f64, height: f64, }
struct Tire { material: Material, pressure: f64, size: Size2D, }
@return Tire A randomly generated tire.\n"]
Returns:\n
Tire: A randomly generated tire.\n"]
fn createrandomtire() -> Tire { use rand::Rng; let mut rng = rand::thread_rng();
let random_material = if rng.gen_bool(0.5) {
Material::Plastic
} else {
Material::Rubber
};
Tire {
material: random_material,
pressure: rng.gen_range(30.0..60.0),
size: Size2D {
width: rng.gen_range(5.0..10.0),
height: rng.gen_range(10.0..20.0),
},
}
}
fn formatwheelidentifier_c(dimensions: &[u8; 3]) { println!("Wheel identifier: {:?}", dimensions); }
fn formatwheelidentifier_py(dimensions: [u8; 3]) { println!("Wheel identifier: {:?}", dimensions); }
// Used to export Python module cpymodule!( name = example, types = [Material, Size2D, Tire], functions = [ createrandomtire, formatwheel_identifier, ] ); ```