flapigen 0.11.0

Tool for connecting libraries written in Rust with other languages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
r#"private:

    FooWrapper(int32_t a0) noexcept
    {

        this->self_ = private_Foo_from_int(a0);
        if (this->self_ == nullptr) {
            std::abort();
        }
    }

    static void private_f() noexcept;
public:

    static void public_f() noexcept;
protected:

    static void protected_f() noexcept;"#;