File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ pub trait TraceWriter {
8282 fn add_event ( & mut self , event : TraceLowLevelEvent ) ;
8383 fn append_events ( & mut self , events : & mut Vec < TraceLowLevelEvent > ) ;
8484
85- fn store_trace_metadata ( & self , path : & Path ) -> Result < ( ) , Box < dyn Error > > ;
85+ fn finish_writing_trace_metadata ( & self , path : & Path ) -> Result < ( ) , Box < dyn Error > > ;
8686 fn finish_writing_trace_events ( & self ) -> Result < ( ) , Box < dyn Error > > ;
8787 fn store_trace_paths ( & self , path : & Path ) -> Result < ( ) , Box < dyn Error > > ;
8888}
@@ -414,7 +414,7 @@ impl TraceWriter for NonStreamingTraceWriter {
414414 self . events . append ( events) ;
415415 }
416416
417- fn store_trace_metadata ( & self , path : & Path ) -> Result < ( ) , Box < dyn Error > > {
417+ fn finish_writing_trace_metadata ( & self , path : & Path ) -> Result < ( ) , Box < dyn Error > > {
418418 let trace_metadata = TraceMetadata {
419419 program : self . program . clone ( ) ,
420420 args : self . args . clone ( ) ,
You can’t perform that action at this time.
0 commit comments