alef 0.25.37

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
8
// {{ go_func_name }} wraps the {{ owner_type }}.{{ method_call_name }} streaming adapter,
// exposing it as a module-level function for test and consumer convenience.
func {{ go_func_name }}({{ params }}) ({{ return_type }}) {
{% if request_construction %}
	{{ request_construction }}
{% endif %}
	return {{ method_call }}
}