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
r#"public enum ControlItem {
    GNSS(0),
    GPS_PROVIDER(1);"#;

r#"public interface ControlStateObserver {


    void onSessionUpdate(@NonNull ControlItem item, boolean is_ok);

}"#;