Skip to content

Commit

Permalink
Remove useless Sized bound
Browse files Browse the repository at this point in the history
  • Loading branch information
aqrln committed Sep 25, 2024
1 parent e76b742 commit 26f089d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub fn trace_parent_to_string(context: &SpanContext) -> String {
format!("traceparent='00-{trace_id:032x}-{span_id:016x}-01'")
}

pub trait SqlTraceComment: Sized {
pub trait SqlTraceComment {
fn append_trace(self, span: &Span) -> Self;
fn add_traceparent(self, traceparent: Option<TraceParent>) -> Self;
}
Expand Down

0 comments on commit 26f089d

Please sign in to comment.