py-rs 0.1.1

generate python bindings from rust types
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(unused)]

use ::py_rs::PY;

mod ts_rs {}

#[derive(PY)]
struct Foo {
    x: u32,
}