bincode-typescript 0.1.0

Generates TypeScript serialisation and deserialisation code from Rust structs and enums
Documentation
1
2
3
4
5
6
7
8
9
10
11
// This file was auto-generated from Rust code by {{pkg_name}} v{{pkg_version}}

{% for e in enums -%}
  {{e}}
{% endfor %}

{% for s in structs -%}
  {{s}}
{% endfor %}

{% include "runtime.ts.j2" %}