boltffi_bindgen 0.24.1

Code generation library for BoltFFI - generates Swift, Kotlin, and TypeScript bindings
Documentation
1
2
3
4
5
6
7
8
9
10
{%- for method in methods %}{% if method.is_static %}
{%- match method.impl_ %}
{%- when SyncMethod with (wire_method) %}

{{ wire_method|indent(8, true) }}
{%- when AsyncMethod with (async_method) %}

{{ async_method|indent(8, true) }}
{%- endmatch %}
{%- endif %}{% endfor %}