We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf61569 commit af2c8b8Copy full SHA for af2c8b8
src/lib.rs
@@ -696,6 +696,12 @@ impl Builder {
696
self
697
}
698
699
+ /// Deprecated alias for allowlist_recursively.
700
+ #[deprecated(note = "Use allowlist_recursively instead")]
701
+ pub fn whitelist_recursively(self, doit: bool) -> Self {
702
+ self.allowlist_recursively(doit)
703
+ }
704
+
705
/// Generate `#[macro_use] extern crate objc;` instead of `use objc;`
706
/// in the prologue of the files generated from objective-c files
707
pub fn objc_extern_crate(mut self, doit: bool) -> Self {
0 commit comments