alef 0.20.6

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
impl {{ trait_path }} for {{ struct_name }} {
{% for method in methods %}
    fn {{ method.name }}(&mut self) -> {{ return_ty }} {
        // Method body will be generated separately
    }
{% endfor %}
}