From 50ef02f52c2e8d803c4ddfa3f35e9fb1db64a5fd Mon Sep 17 00:00:00 2001 From: Congyu WANG Date: Mon, 22 Jul 2024 18:18:44 +0800 Subject: [PATCH] requires Send + Sync + 'static in dynamic store callout --- system-configuration/src/dynamic_store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system-configuration/src/dynamic_store.rs b/system-configuration/src/dynamic_store.rs index 444277a..ad107f1 100644 --- a/system-configuration/src/dynamic_store.rs +++ b/system-configuration/src/dynamic_store.rs @@ -74,7 +74,7 @@ impl SCDynamicStoreBuilder<()> { } } -impl SCDynamicStoreBuilder { +impl SCDynamicStoreBuilder { /// Set wether or not the created [`SCDynamicStore`] should have session keys or not. /// See [`SCDynamicStoreCreateWithOptions`] for details. ///