alef 0.23.39

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Generated by alef. Do not edit by hand.
{% if suppressions %}
@file:Suppress(
{% for suppression in suppressions %}
    "{{ suppression }}",
{% endfor %}
)
{% endif %}

package {{ package }}

{% for import in imports %}
{{ import }}
{% endfor %}
{% if imports %}
{% endif %}
{{ body }}