Don't generate docstrings
This commit is contained in:
parent
30d63e0a59
commit
e0e5ed7dc4
|
|
@ -78,6 +78,7 @@ fn main() {
|
||||||
.whitelist_type("rcl_action_client_options_t")
|
.whitelist_type("rcl_action_client_options_t")
|
||||||
.whitelist_type("rcl_action_server_options_t")
|
.whitelist_type("rcl_action_server_options_t")
|
||||||
.whitelist_var("RCL_RET_ACTION_.*")
|
.whitelist_var("RCL_RET_ACTION_.*")
|
||||||
|
.generate_comments(false)
|
||||||
.generate()
|
.generate()
|
||||||
.expect("Unable to generate bindings");
|
.expect("Unable to generate bindings");
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -145,6 +145,7 @@ fn main() {
|
||||||
.blacklist_type("rosidl_runtime_c__int64__Sequence")
|
.blacklist_type("rosidl_runtime_c__int64__Sequence")
|
||||||
.size_t_is_usize(true)
|
.size_t_is_usize(true)
|
||||||
.no_debug("_OSUnaligned.*")
|
.no_debug("_OSUnaligned.*")
|
||||||
|
.generate_comments(false)
|
||||||
.default_enum_style(bindgen::EnumVariation::Rust {
|
.default_enum_style(bindgen::EnumVariation::Rust {
|
||||||
non_exhaustive: false,
|
non_exhaustive: false,
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -68,6 +68,7 @@ fn main() {
|
||||||
.no_debug("_OSUnaligned.*")
|
.no_debug("_OSUnaligned.*")
|
||||||
.derive_partialeq(true)
|
.derive_partialeq(true)
|
||||||
.derive_copy(true)
|
.derive_copy(true)
|
||||||
|
.generate_comments(false)
|
||||||
.generate()
|
.generate()
|
||||||
.expect("Unable to generate bindings");
|
.expect("Unable to generate bindings");
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue