alef 0.23.32

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(Debug)]
pub struct {{ struct_name }} {
    python_obj: Py<PyAny>,
}

impl {{ struct_name }} {
    pub fn new(python_obj: Py<PyAny>) -> Self {
        Self { python_obj }
    }
}