alef-codegen 0.15.21

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