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
foreigner_class!(class Foo {
   self_type SomeType;
   private constructor = empty;
   method SomeType::f(&self);
});

foreigner_class!(class Boo {
   self_type OtherType;
   private constructor = empty -> Box<OtherType>;
   method OtherType::f(&self);
});