Skip to content

Commit

Permalink
Format code with latest nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
sandhose committed Oct 1, 2024
1 parent 87f3452 commit e0ba487
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/tower/src/trace_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ trait AsInjector {
}

impl<B> AsInjector for Request<B> {
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())
Expand Down

0 comments on commit e0ba487

Please sign in to comment.