flapigen 0.11.0

Tool for connecting libraries written in Rust with other languages
Documentation
1
2
3
4
5
6
7
r##"# [ unsafe ( no_mangle ) ] pub extern "C" fn Foo_f ( a : * const MapRect , ) -> ( ) {
 assert ! ( ! a . is_null ( ) ) ;
 let map_rect : & MapRect = unsafe { &* a } ;
 let points_arr : [ MapPoint ; 4 ] = map_rect . into ( ) ;
 let mut a : MapRectRef = & points_arr ;
 let mut ret : ( ) = f ( a ) ;
 ret }"##;