alef 0.23.13

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
    /// Create a new service instance.
    public init() {
        // swift-bridge generates `class {{ service_name }}` with a `convenience init()`
        // wrapping `__swift_bridge__${{ service_name }}$new`. Call the constructor directly
        // instead of looking for a free `{{ service_camel }}New()` module function.
        self.inner = RustBridge.{{ service_name }}()
    }