rust_swig 0.4.0

Tool for connecting libraries written in Rust with other languages
Documentation
1
2
3
4
5
6
7
8
9
10
11
r#"public final void f1(@NonNull SomeObserver cb) {
        do_f1(mNativeObj, cb);
    }
    private static native void do_f1(long self, SomeObserver cb);"#;

r#"public interface SomeObserver {


    void onStateChanged(@NonNull String a0);

}"#;