From: Colin Walters Date: Mon, 21 Nov 2022 18:40:53 +0000 (-0500) Subject: Allow missing docs on two `glib::wrapper` functions X-Git-Tag: archive/raspbian/2022.7-2+rpi1^2~13^2^2~5^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=71e3bb8b80f14e471c9ae05acb888f1d2d95851d;p=ostree.git Allow missing docs on two `glib::wrapper` functions This is being triggered in gtk-rs generated code. --- diff --git a/rust-bindings/src/lib.rs b/rust-bindings/src/lib.rs index 1cbeabd7..01f8ad08 100644 --- a/rust-bindings/src/lib.rs +++ b/rust-bindings/src/lib.rs @@ -50,6 +50,7 @@ pub use crate::functions::*; mod mutable_tree; pub use crate::mutable_tree::*; #[cfg(any(feature = "v2019_3", feature = "dox"))] +#[allow(missing_docs)] mod kernel_args; #[cfg(any(feature = "v2019_3", feature = "dox"))] pub use crate::kernel_args::*; @@ -63,6 +64,7 @@ pub use crate::repo::*; mod repo_checkout_at_options; #[cfg(any(feature = "v2016_8", feature = "dox"))] pub use crate::repo_checkout_at_options::*; +#[allow(missing_docs)] mod repo_transaction_stats; pub use repo_transaction_stats::RepoTransactionStats; mod se_policy;