diff options
-rw-r--r-- | book/src/allowlisting.md | 6 | ||||
-rw-r--r-- | book/src/blocklisting.md | 2 | ||||
-rw-r--r-- | book/src/nocopy.md | 2 | ||||
-rw-r--r-- | book/src/nodebug.md | 2 | ||||
-rw-r--r-- | book/src/opaque.md | 2 | ||||
-rw-r--r-- | book/src/using-unions.md | 4 |
6 files changed, 9 insertions, 9 deletions
diff --git a/book/src/allowlisting.md b/book/src/allowlisting.md index 8c57eaf3..2e28d80f 100644 --- a/book/src/allowlisting.md +++ b/book/src/allowlisting.md @@ -16,9 +16,9 @@ transitively used by a definition that matches them. ### Library -* [`bindgen::Builder::allowlist_type`](https://docs.rs/bindgen/0.23.1/bindgen/struct.Builder.html#method.allowlist_type) -* [`bindgen::Builder::allowlist_function`](https://docs.rs/bindgen/0.23.1/bindgen/struct.Builder.html#method.allowlist_function) -* [`bindgen::Builder::allowlist_var`](https://docs.rs/bindgen/0.23.1/bindgen/struct.Builder.html#method.allowlist_var) +* [`bindgen::Builder::allowlist_type`](https://docs.rs/bindgen/latest/bindgen/struct.Builder.html#method.allowlist_type) +* [`bindgen::Builder::allowlist_function`](https://docs.rs/bindgen/latest/bindgen/struct.Builder.html#method.allowlist_function) +* [`bindgen::Builder::allowlist_var`](https://docs.rs/bindgen/latest/bindgen/struct.Builder.html#method.allowlist_var) ### Command Line diff --git a/book/src/blocklisting.md b/book/src/blocklisting.md index 1d608616..5c082dda 100644 --- a/book/src/blocklisting.md +++ b/book/src/blocklisting.md @@ -15,7 +15,7 @@ not. ### Library -* [`bindgen::Builder::blocklist_type`](https://docs.rs/bindgen/0.31.3/bindgen/struct.Builder.html#method.blocklist_type) +* [`bindgen::Builder::blocklist_type`](https://docs.rs/bindgen/latest/bindgen/struct.Builder.html#method.blocklist_type) ### Command Line diff --git a/book/src/nocopy.md b/book/src/nocopy.md index ec21f3ae..8a637a59 100644 --- a/book/src/nocopy.md +++ b/book/src/nocopy.md @@ -8,7 +8,7 @@ used to prevent bindgen to autoderive the `Copy` and `Clone` traits for a type. ### Library -* [`bindgen::Builder::no_copy`](https://docs.rs/bindgen/0.23.1/bindgen/struct.Builder.html#method.no_copy) +* [`bindgen::Builder::no_copy`](https://docs.rs/bindgen/latest/bindgen/struct.Builder.html#method.no_copy) ### Command Line diff --git a/book/src/nodebug.md b/book/src/nodebug.md index 251b792b..c412a7df 100644 --- a/book/src/nodebug.md +++ b/book/src/nodebug.md @@ -7,7 +7,7 @@ used to prevent bindgen to autoderive the `Debug` traits for a type. ### Library -* [`bindgen::Builder::no_debug`](https://docs.rs/bindgen/0.54.2/bindgen/struct.Builder.html#method.no_debug) +* [`bindgen::Builder::no_debug`](https://docs.rs/bindgen/latest/bindgen/struct.Builder.html#method.no_debug) ### Command Line diff --git a/book/src/opaque.md b/book/src/opaque.md index e1bf600c..ad150567 100644 --- a/book/src/opaque.md +++ b/book/src/opaque.md @@ -10,7 +10,7 @@ automatically, but other times it needs some explicit help from you. ### Library -* [`bindgen::Builder::opaque_type`](https://docs.rs/bindgen/0.23.1/bindgen/struct.Builder.html#method.opaque_type) +* [`bindgen::Builder::opaque_type`](https://docs.rs/bindgen/latest/bindgen/struct.Builder.html#method.opaque_type) ### Command Line diff --git a/book/src/using-unions.md b/book/src/using-unions.md index 9a0cc3ee..9e8e9b99 100644 --- a/book/src/using-unions.md +++ b/book/src/using-unions.md @@ -35,8 +35,8 @@ typedef union { ### Library -* [`bindgen::Builder::rust_target()`](https://docs.rs/bindgen/0.29.0/bindgen/struct.Builder.html#method.rust_target) <!-- Update when live --> -* [`bindgen::Builder::derive_default()`](https://docs.rs/bindgen/0.29.0/bindgen/struct.Builder.html#method.derive_default) +* [`bindgen::Builder::rust_target()`](https://docs.rs/bindgen/latest/bindgen/struct.Builder.html#method.rust_target) <!-- Update when live --> +* [`bindgen::Builder::derive_default()`](https://docs.rs/bindgen/latest/bindgen/struct.Builder.html#method.derive_default) ### Command Line |