File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
foundations/src/telemetry Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ impl TestTelemetryContext {
111
111
112
112
/// Returns all the log records produced in the test context.
113
113
#[ cfg( feature = "logging" ) ]
114
- pub fn log_records ( & self ) -> RwLockReadGuard < Vec < TestLogRecord > > {
114
+ pub fn log_records ( & self ) -> RwLockReadGuard < ' _ , Vec < TestLogRecord > > {
115
115
self . log_records . read ( ) . unwrap ( )
116
116
}
117
117
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ impl TestTrace {
63
63
/// ```
64
64
///
65
65
/// [depth-first]: https://en.wikipedia.org/wiki/Depth-first_search
66
- pub fn iter ( & self ) -> TestTraceIterator {
66
+ pub fn iter ( & self ) -> TestTraceIterator < ' _ > {
67
67
TestTraceIterator {
68
68
stack : vec ! [ & self . 0 ] ,
69
69
}
You can’t perform that action at this time.
0 commit comments