File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ pub struct CborZstdTraceWriter<'a> {
2222 trace_events_file_zstd_encoder : Option < Encoder < ' a , File > > ,
2323}
2424
25- impl < ' a > CborZstdTraceWriter < ' a > {
25+ impl CborZstdTraceWriter < ' _ > {
2626 /// Create a new tracer instance for the given program and arguments.
2727 pub fn new ( program : & str , args : & [ String ] ) -> Self {
2828 CborZstdTraceWriter {
@@ -34,7 +34,7 @@ impl<'a> CborZstdTraceWriter<'a> {
3434 }
3535}
3636
37- impl < ' a > AbstractTraceWriter for CborZstdTraceWriter < ' a > {
37+ impl AbstractTraceWriter for CborZstdTraceWriter < ' _ > {
3838 fn get_data ( & self ) -> & AbstractTraceWriterData {
3939 & self . base
4040 }
@@ -58,7 +58,7 @@ impl<'a> AbstractTraceWriter for CborZstdTraceWriter<'a> {
5858 }
5959}
6060
61- impl < ' a > TraceWriter for CborZstdTraceWriter < ' a > {
61+ impl TraceWriter for CborZstdTraceWriter < ' _ > {
6262 fn begin_writing_trace_events ( & mut self , path : & std:: path:: Path ) -> Result < ( ) , Box < dyn std:: error:: Error > > {
6363 let pb = path. to_path_buf ( ) ;
6464 self . trace_events_path = Some ( pb. clone ( ) ) ;
You can’t perform that action at this time.
0 commit comments