| commit | ac523232d317373aec9c638f6b0451c78f11f892 | [log] [tgz] |
|---|---|---|
| author | bors-servo <[email protected]> | Tue Jan 02 11:22:14 2018 |
| committer | GitHub <[email protected]> | Tue Jan 02 11:22:14 2018 |
| tree | 35743a3edda9a68e15aad0b3b5f0891ea6678b59 | |
| parent | e8d5230cc9df3c4f28c2ce49a0605f08c3764869 [diff] | |
| parent | 13a78db0769cfa442f76e026ef9e925a80549069 [diff] |
Auto merge of #1189 - nox:is-dir, r=fitzgen Use Metadata::is_dir
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