Closed
Description
Look for example to bindgen hide_type method
It is deprecated, and in source code there is hint what should be used instead:
/// Hide the given type from the generated bindings. Regular expressions are
/// supported.
#[deprecated = "Use blacklist_type instead"]
pub fn hide_type<T: AsRef<str>>(self, arg: T) -> Builder {
self.blacklist_type(arg)
}
but in generated html documentation there is no hint about Use blacklist_type instead