alef-codegen 0.15.44

Shared codegen utilities for the alef polyglot binding generator
Documentation
1
2
3
4
5
6
7
8
9
impl Default for {{ full_name }} {
    fn default() -> Self {
        Self {
{%- for field in fields %}
            {{ field.name }}: {{ field.default_val }},
{%- endfor %}
        }
    }
}