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.
2 parents 23a92ce + 6475365 commit a64ade7Copy full SHA for a64ade7
system-configuration/src/dynamic_store.rs
@@ -221,6 +221,7 @@ impl SCDynamicStore {
221
success != 0
222
}
223
224
+ /// Removes the value of the specified key from the dynamic store.
225
pub fn remove<S: Into<CFString>>(&self, key: S) -> bool {
226
let cf_key = key.into();
227
let success = unsafe {
system-configuration/src/lib.rs
@@ -17,6 +17,8 @@
17
//! [SystemConfiguration]: https://developer.apple.com/documentation/systemconfiguration?language=objc
18
//! [`system-configuration-sys`]: https://crates.io/crates/system-configuration-sys
19
20
+#![deny(missing_docs)]
21
+
22
#[macro_use]
23
extern crate core_foundation;
24
extern crate system_configuration_sys;
0 commit comments