| commit | 228b80babebd5871786f064bb1cc4a5c282442ad | [log] [tgz] |
|---|---|---|
| author | Emilio Cobos Álvarez <emilio@crisal.io> | Thu Jan 04 01:23:32 2018 +0100 |
| committer | Emilio Cobos Álvarez <emilio@crisal.io> | Thu Jan 04 01:23:32 2018 +0100 |
| tree | 0333096406a6865f3d70b70cbbe6e5ee3127d951 | |
| parent | ac523232d317373aec9c638f6b0451c78f11f892 [diff] |
s/gcc/g++ in the travis deps Per https://docs.travis-ci.com/user/languages/cpp/, though not super-confident this will fix it.
bindgenimpl period has been started! Join us at Gitter.im.
bindgen automatically generates Rust FFI bindings to C and C++ libraries.
For example, given the C header doggo.h:
typedef struct Doggo { int many; char wow; } Doggo; void eleven_out_of_ten_majestic_af(Doggo* pupper);
bindgen produces Rust FFI code allowing you to call into the doggo library's functions and use its types:
/* automatically generated by rust-bindgen */ #[repr(C)] pub struct Doggo { pub many: ::std::os::raw::c_int, pub wow: ::std::os::raw::c_char, } extern "C" { pub fn eleven_out_of_ten_majestic_af(pupper: *mut Doggo); }
📚 Read the bindgen users guide here! 📚
API reference documentation is on docs.rs