From e0ba487f6b7ab925e4ebd04296cd977047415d2b Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Tue, 1 Oct 2024 10:15:36 +0200 Subject: [PATCH] Format code with latest nightly --- crates/tower/src/trace_context.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/tower/src/trace_context.rs b/crates/tower/src/trace_context.rs index 1de7594ed..3621490c5 100644 --- a/crates/tower/src/trace_context.rs +++ b/crates/tower/src/trace_context.rs @@ -21,7 +21,10 @@ trait AsInjector { } impl AsInjector for Request { - type Injector<'a> = HeaderInjector<'a> where Self: 'a; + type Injector<'a> + = HeaderInjector<'a> + where + Self: 'a; fn as_injector(&mut self) -> Self::Injector<'_> { HeaderInjector(self.headers_mut())