uniffi_bindgen 0.31.1

a multi-language bindings generator for rust (codegen and cli tooling)
Documentation
1
2
3
4
5
6
{%- let callable = func.callable %}
{% if callable.is_async %}async {% endif %}def {{ callable.name }}({% include "CallableArgs.py" %}) -> {{ callable.return_type.type_name }}:
    {{ func.docstring|docstring(4) -}}
    {%- filter indent(4) %}
    {%- include "CallableBody.py" %}
    {%- endfilter %}