From ec0dc8bcad8097ba325823abf28ad220cc91cf80 Mon Sep 17 00:00:00 2001 From: link2xt Date: Wed, 28 Jan 2026 22:05:53 +0000 Subject: [PATCH] refactor: mark ProviderOptions as non_exhaustive This prevents triggering clippy lint `needless_update`. --- src/provider.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/provider.rs b/src/provider.rs index 9d5ee63c0..d79876d24 100644 --- a/src/provider.rs +++ b/src/provider.rs @@ -145,6 +145,7 @@ pub struct Provider { /// Provider options with good defaults. #[derive(Debug, PartialEq, Eq)] +#[non_exhaustive] pub struct ProviderOptions { /// True if provider is known to use use proper, /// not self-signed certificates.