alef 0.83.2

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
8
9
        do {
{% if binds_result %}
            let result = try self.bridge.{{ method_name }}({{ call_args }})
{% else %}
            try self.bridge.{{ method_name }}({{ call_args }})
{% endif %}
{{ success_body }}        } catch {
            return marshal_error_result(error)
        }