alef 0.25.37

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
8
9
10
{%- if has_async_methods %}
{%- if async_trait_is_send %}
#[async_trait::async_trait]
{%- else %}
#[async_trait::async_trait(?Send)]
{%- endif %}
{%- endif %}
impl {{ trait_path }} for {{ wrapper_name }} {
{{ methods_code }}
}