Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
maddeleine committed Sep 27, 2024
1 parent b901fe5 commit 8d25a58
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions quic/s2n-quic-events/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ impl OutputMode {

fn mutex(&self) -> TokenStream {
match self {
OutputMode::Ref => quote!(use std::sync::Mutex;),
OutputMode::Ref => quote!(
use std::sync::Mutex;
),
OutputMode::Mut => quote!(),
}
}
Expand Down Expand Up @@ -700,7 +702,7 @@ impl ToTokens for Output {
use #s2n_quic_core_path::event::metrics::Recorder;

#[derive(Clone, Debug)]
pub struct Subscriber<S: super::Subscriber>
pub struct Subscriber<S: super::Subscriber>
where S::ConnectionContext: Recorder {
subscriber: S,
}
Expand Down

0 comments on commit 8d25a58

Please sign in to comment.