alef 0.83.2

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * Callback interface for visitor traversal and transformation.
 *
 * Implement this interface and pass your implementation to the configured options bridge field
 * to customize visitor callbacks.
 *
{% if default_result_expr %}
 * All methods have default no-op implementations that return `{{ default_result_expr }}`.
{% endif %}
 * Override only the methods you need.
 */
interface {{ interface_name }}
{