We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 900f200 commit 4545cc0Copy full SHA for 4545cc0
opentelemetry/src/logs/record.rs
@@ -6,7 +6,9 @@ pub trait LogRecord {
6
/// Sets the `event_name` of a record
7
fn set_event_name<T>(&mut self, _name: T)
8
where
9
- T: Into<Cow<'static, str>> {}
+ T: Into<Cow<'static, str>>,
10
+ {
11
+ }
12
13
/// Sets the time when the event occurred measured by the origin clock, i.e. the time at the source.
14
fn set_timestamp(&mut self, timestamp: SystemTime);
0 commit comments