File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 292
292
//! configured in your `Cargo.toml`.
293
293
//!
294
294
//! * `std` allows use of `std` crate instead of the default `core`. Enables using `std::error` and
295
- //! `set_boxed_logger` functionality.
295
+ //! `set_boxed_logger` functionality.
296
296
//! * `serde` enables support for serialization and deserialization of `Level` and `LevelFilter`.
297
297
//!
298
298
//! ```toml
@@ -1035,7 +1035,7 @@ impl<'a> RecordBuilder<'a> {
1035
1035
}
1036
1036
}
1037
1037
1038
- impl < ' a > Default for RecordBuilder < ' a > {
1038
+ impl Default for RecordBuilder < ' _ > {
1039
1039
fn default ( ) -> Self {
1040
1040
Self :: new ( )
1041
1041
}
@@ -1164,7 +1164,7 @@ impl<'a> MetadataBuilder<'a> {
1164
1164
}
1165
1165
}
1166
1166
1167
- impl < ' a > Default for MetadataBuilder < ' a > {
1167
+ impl Default for MetadataBuilder < ' _ > {
1168
1168
fn default ( ) -> Self {
1169
1169
Self :: new ( )
1170
1170
}
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ fn test_line_numbers(state: &State) {
97
97
log:: set_max_level ( LevelFilter :: Trace ) ;
98
98
99
99
info ! ( "" ) ; // ensure check_line function follows log macro
100
- check_log_location ( & state) ;
100
+ check_log_location ( state) ;
101
101
102
102
#[ track_caller]
103
103
fn check_log_location ( state : & State ) {
You can’t perform that action at this time.
0 commit comments