gecko-dev/third_party/rust/bindgen
2018-11-02 10:56:08 -04:00
..
src Bug 1500849 - Revendor Rust dependencies. 2018-10-22 13:20:21 +02:00
.cargo-checksum.json Bug 1502964 - part 2 - update winapi to froydnj/winapi-rs#aarch64; r=ted.mielczarek 2018-11-02 10:56:08 -04:00
build.rs
Cargo.toml Bug 1500849 - Revendor Rust dependencies. 2018-10-22 13:20:21 +02:00
LICENSE Bug 1488172 - Revendor rust dependencies. r=me 2018-09-03 14:13:36 +02:00
README.md Bug 1472538: Revendor dependencies. 2018-07-01 16:04:49 +02:00

bindgen

impl period has been started! Join us at Gitter.im.

bindgen automatically generates Rust FFI bindings to C (and some 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);
}

Users Guide

📚 Read the bindgen users guide here! 📚

API Reference

API reference documentation is on docs.rs

Contributing

See CONTRIBUTING.md for hacking on bindgen!