12
12
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
13
13
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
14
14
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
15
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
16
15
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
17
16
pub struct MetricsData {
18
17
/// An array of ResourceMetrics.
@@ -27,7 +26,6 @@ pub struct MetricsData {
27
26
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
28
27
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
29
28
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
30
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
31
29
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
32
30
pub struct ResourceMetrics {
33
31
/// The resource for the metrics in this message.
@@ -49,7 +47,6 @@ pub struct ResourceMetrics {
49
47
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
50
48
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
51
49
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
52
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
53
50
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
54
51
pub struct ScopeMetrics {
55
52
/// The instrumentation scope information for the metrics in this message.
@@ -155,7 +152,6 @@ pub struct ScopeMetrics {
155
152
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
156
153
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
157
154
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
158
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
159
155
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
160
156
pub struct Metric {
161
157
/// name of the metric.
@@ -192,7 +188,6 @@ pub mod metric {
192
188
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
193
189
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
194
190
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
195
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
196
191
#[ derive( Clone , PartialEq , :: prost:: Oneof ) ]
197
192
pub enum Data {
198
193
#[ prost( message, tag = "5" ) ]
@@ -219,7 +214,6 @@ pub mod metric {
219
214
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
220
215
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
221
216
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
222
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
223
217
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
224
218
pub struct Gauge {
225
219
#[ prost( message, repeated, tag = "1" ) ]
@@ -230,7 +224,6 @@ pub struct Gauge {
230
224
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
231
225
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
232
226
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
233
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
234
227
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
235
228
pub struct Sum {
236
229
#[ prost( message, repeated, tag = "1" ) ]
@@ -248,7 +241,6 @@ pub struct Sum {
248
241
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
249
242
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
250
243
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
251
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
252
244
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
253
245
pub struct Histogram {
254
246
#[ prost( message, repeated, tag = "1" ) ]
@@ -263,7 +255,6 @@ pub struct Histogram {
263
255
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
264
256
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
265
257
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
266
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
267
258
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
268
259
pub struct ExponentialHistogram {
269
260
#[ prost( message, repeated, tag = "1" ) ]
@@ -282,7 +273,6 @@ pub struct ExponentialHistogram {
282
273
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
283
274
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
284
275
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
285
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
286
276
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
287
277
pub struct Summary {
288
278
#[ prost( message, repeated, tag = "1" ) ]
@@ -293,7 +283,6 @@ pub struct Summary {
293
283
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
294
284
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
295
285
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
296
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
297
286
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
298
287
pub struct NumberDataPoint {
299
288
/// The set of key/value pairs that uniquely identify the timeseries from
@@ -350,7 +339,6 @@ pub mod number_data_point {
350
339
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
351
340
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
352
341
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
353
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
354
342
#[ derive( Clone , Copy , PartialEq , :: prost:: Oneof ) ]
355
343
pub enum Value {
356
344
#[ prost( double, tag = "4" ) ]
@@ -372,7 +360,6 @@ pub mod number_data_point {
372
360
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
373
361
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
374
362
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
375
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
376
363
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
377
364
pub struct HistogramDataPoint {
378
365
/// The set of key/value pairs that uniquely identify the timeseries from
@@ -470,7 +457,6 @@ pub struct HistogramDataPoint {
470
457
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
471
458
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
472
459
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
473
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
474
460
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
475
461
pub struct ExponentialHistogramDataPoint {
476
462
/// The set of key/value pairs that uniquely identify the timeseries from
@@ -570,7 +556,6 @@ pub mod exponential_histogram_data_point {
570
556
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
571
557
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
572
558
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
573
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
574
559
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
575
560
pub struct Buckets {
576
561
/// Offset is the bucket index of the first entry in the bucket_counts array.
@@ -596,7 +581,6 @@ pub mod exponential_histogram_data_point {
596
581
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
597
582
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
598
583
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
599
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
600
584
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
601
585
pub struct SummaryDataPoint {
602
586
/// The set of key/value pairs that uniquely identify the timeseries from
@@ -653,7 +637,6 @@ pub mod summary_data_point {
653
637
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
654
638
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
655
639
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
656
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
657
640
#[ derive( Clone , Copy , PartialEq , :: prost:: Message ) ]
658
641
pub struct ValueAtQuantile {
659
642
/// The quantile of a distribution. Must be in the interval
@@ -674,7 +657,6 @@ pub mod summary_data_point {
674
657
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
675
658
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
676
659
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
677
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
678
660
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
679
661
pub struct Exemplar {
680
662
/// The set of key/value pairs that were filtered out by the aggregator, but
@@ -714,7 +696,6 @@ pub mod exemplar {
714
696
#[ cfg_attr( feature = "with-schemars" , derive( schemars:: JsonSchema ) ) ]
715
697
#[ cfg_attr( feature = "with-serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
716
698
#[ cfg_attr( feature = "with-serde" , serde( rename_all = "camelCase" ) ) ]
717
- #[ allow( clippy:: derive_partial_eq_without_eq) ]
718
699
#[ derive( Clone , Copy , PartialEq , :: prost:: Oneof ) ]
719
700
pub enum Value {
720
701
#[ prost( double, tag = "3" ) ]
0 commit comments