alef-codegen 0.15.39

Shared codegen utilities for the alef polyglot binding generator
Documentation
1
2
3
4
5
6
7
8
9
impl From<{{ core_path }}> for {{ binding_name }} {
    fn from(val: {{ core_path }}) -> Self {
        match val {
{%- for arm in arms %}
            {{ arm }}
{%- endfor %}
        }
    }
}