boltffi_bindgen 0.2.0

Code generation library for BoltFFI - generates Swift, Kotlin, and TypeScript bindings
Documentation
1
2
3
4
5
6
7
8
9
// ___{{ name }}: internal repr(C) layout for {{ name }}.
// The ___ prefix marks this as an FFI-private type — foreign wrappers
// generate their own native struct and read/write through this layout.
typedef struct {
{%- for field in fields %}
    {{ field.c_type }} {{ field.name }};
{%- endfor %}
} ___{{ name }};