From eb761b09735eb594106783479c839b3702f9e65a Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sun, 1 Dec 2024 20:58:05 +0000 Subject: [PATCH] refactor(net): elide lifetime --- src/net/system.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/system.rs b/src/net/system.rs index 5d10248..78a0094 100644 --- a/src/net/system.rs +++ b/src/net/system.rs @@ -695,7 +695,7 @@ impl<'net> WhenRequest<'net, WhenBuildRequest> { } } } -impl<'net> WhenRequest<'net, WhenBuildResponse> { +impl WhenRequest<'_, WhenBuildResponse> { /// Specifies a header that will be on the response sent for the matching request. #[must_use] pub fn header(mut self, name: impl Into, value: impl Into) -> Self {