metrique-macro 0.1.16

Library for wide event metrics - #[metrics] macro
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
---
source: metrique-macro/src/lib.rs
expression: parsed_file
---
struct Nested {
    value: u32,
}
#[doc(hidden)]
#[allow(clippy::type_complexity)]
pub struct NestedEntry {
    #[deprecated(
        note = "these fields will become private in a future release. To introspect an entry, use `metrique::writer::test_util::test_entry`"
    )]
    #[doc(hidden)]
    value: <u32 as metrique::CloseValue>::Closed,
}
const _: () = {
    #[expect(deprecated)]
    impl<NS: ::metrique::NameStyle> ::metrique::InflectableEntry<NS> for NestedEntry {
        fn write<'__metrique_write>(
            &'__metrique_write self,
            writer: &mut impl ::metrique::writer::EntryWriter<'__metrique_write>,
        ) {
            let __metrique_self = self;
            ::metrique::writer::EntryWriter::value(
                writer,
                {
                    struct ValuePreserve;
                    impl ::metrique::concat::ConstStr for ValuePreserve {
                        const VAL: &'static str = "value";
                    }
                    struct ValueKebab;
                    impl ::metrique::concat::ConstStr for ValueKebab {
                        const VAL: &'static str = "value";
                    }
                    struct ValuePascal;
                    impl ::metrique::concat::ConstStr for ValuePascal {
                        const VAL: &'static str = "Value";
                    }
                    struct ValueSnake;
                    impl ::metrique::concat::ConstStr for ValueSnake {
                        const VAL: &'static str = "value";
                    }
                    ::metrique::concat::const_str_value::<
                        <NS as ::metrique::NameStyle>::Inflect<
                            ValuePreserve,
                            ValuePascal,
                            ValueSnake,
                            ValueKebab,
                        >,
                    >()
                },
                &__metrique_self.value,
            );
        }
        fn sample_group(
            &self,
        ) -> impl ::std::iter::Iterator<
            Item = (::std::borrow::Cow<'static, str>, ::std::borrow::Cow<'static, str>),
        > {
            let __metrique_self = self;
            ::std::iter::empty()
        }
    }
};
impl metrique::CloseValue for &'_ Nested {
    type Closed = NestedEntry;
    fn close(self) -> Self::Closed {
        macro_rules! __metrique_self_expr {
            () => {
                self
            };
        }
        #[allow(deprecated)]
        NestedEntry {
            value: metrique::CloseValue::close(&__metrique_self_expr!().value),
        }
    }
}
impl metrique::CloseValue for Nested {
    type Closed = NestedEntry;
    fn close(self) -> Self::Closed {
        <&Self>::close(&self)
    }
}

enum Status {
    Active { count: u32, latency: u64 },
    Pending(Nested),
    Multi(Nested, u32),
}
#[doc(hidden)]
pub enum StatusEntry {
    #[deprecated(
        note = "these fields will become private in a future release. To introspect an entry, use `metrique::writer::test_util::test_entry`"
    )]
    #[doc(hidden)]
    Active {
        #[deprecated(
            note = "these fields will become private in a future release. To introspect an entry, use `metrique::writer::test_util::test_entry`"
        )]
        #[doc(hidden)]
        count: <u32 as metrique::CloseValue>::Closed,
        #[deprecated(
            note = "these fields will become private in a future release. To introspect an entry, use `metrique::writer::test_util::test_entry`"
        )]
        #[doc(hidden)]
        latency: <<u64 as metrique::CloseValue>::Closed as ::metrique::unit::AttachUnit>::Output<
            metrique::writer::unit::Millisecond,
        >,
    },
    #[deprecated(
        note = "these fields will become private in a future release. To introspect an entry, use `metrique::writer::test_util::test_entry`"
    )]
    #[doc(hidden)]
    Pending(<Nested as metrique::CloseValue>::Closed),
    #[deprecated(
        note = "these fields will become private in a future release. To introspect an entry, use `metrique::writer::test_util::test_entry`"
    )]
    #[doc(hidden)]
    Multi(
        <Nested as metrique::CloseValue>::Closed,
        <u32 as metrique::CloseValue>::Closed,
    ),
}
const _: () = {
    enum StatusEntrySampleGroupIter<V0, V1, V2> {
        V0(V0),
        V1(V1),
        V2(V2),
    }
    impl<
        V0: ::std::iter::Iterator<
                Item = (
                    ::std::borrow::Cow<'static, str>,
                    ::std::borrow::Cow<'static, str>,
                ),
            >,
        V1: ::std::iter::Iterator<
                Item = (
                    ::std::borrow::Cow<'static, str>,
                    ::std::borrow::Cow<'static, str>,
                ),
            >,
        V2: ::std::iter::Iterator<
                Item = (
                    ::std::borrow::Cow<'static, str>,
                    ::std::borrow::Cow<'static, str>,
                ),
            >,
    > ::std::iter::Iterator for StatusEntrySampleGroupIter<V0, V1, V2> {
        type Item = (::std::borrow::Cow<'static, str>, ::std::borrow::Cow<'static, str>);
        fn next(&mut self) -> ::std::option::Option<Self::Item> {
            match self {
                StatusEntrySampleGroupIter::V0(iter) => iter.next(),
                StatusEntrySampleGroupIter::V1(iter) => iter.next(),
                StatusEntrySampleGroupIter::V2(iter) => iter.next(),
            }
        }
    }
    #[expect(deprecated)]
    impl<NS: ::metrique::NameStyle> ::metrique::InflectableEntry<NS> for StatusEntry {
        fn write<'__metrique_write>(
            &'__metrique_write self,
            writer: &mut impl ::metrique::writer::EntryWriter<'__metrique_write>,
        ) {
            let __metrique_self = self;
            #[allow(deprecated)]
            match __metrique_self {
                StatusEntry::Active { count, latency } => {
                    ::metrique::writer::EntryWriter::value(
                        writer,
                        {
                            struct CountPreserve;
                            impl ::metrique::concat::ConstStr for CountPreserve {
                                const VAL: &'static str = "count";
                            }
                            struct CountKebab;
                            impl ::metrique::concat::ConstStr for CountKebab {
                                const VAL: &'static str = "count";
                            }
                            struct CountPascal;
                            impl ::metrique::concat::ConstStr for CountPascal {
                                const VAL: &'static str = "Count";
                            }
                            struct CountSnake;
                            impl ::metrique::concat::ConstStr for CountSnake {
                                const VAL: &'static str = "count";
                            }
                            ::metrique::concat::const_str_value::<
                                <NS as ::metrique::NameStyle>::Inflect<
                                    CountPreserve,
                                    CountPascal,
                                    CountSnake,
                                    CountKebab,
                                >,
                            >()
                        },
                        count,
                    );
                    ::metrique::writer::EntryWriter::value(
                        writer,
                        {
                            struct LatencyPreserve;
                            impl ::metrique::concat::ConstStr for LatencyPreserve {
                                const VAL: &'static str = "latency";
                            }
                            struct LatencyKebab;
                            impl ::metrique::concat::ConstStr for LatencyKebab {
                                const VAL: &'static str = "latency";
                            }
                            struct LatencyPascal;
                            impl ::metrique::concat::ConstStr for LatencyPascal {
                                const VAL: &'static str = "Latency";
                            }
                            struct LatencySnake;
                            impl ::metrique::concat::ConstStr for LatencySnake {
                                const VAL: &'static str = "latency";
                            }
                            ::metrique::concat::const_str_value::<
                                <NS as ::metrique::NameStyle>::Inflect<
                                    LatencyPreserve,
                                    LatencyPascal,
                                    LatencySnake,
                                    LatencyKebab,
                                >,
                            >()
                        },
                        latency,
                    );
                }
                StatusEntry::Pending(v0) => {
                    ::metrique::InflectableEntry::<NS>::write(v0, writer);
                }
                StatusEntry::Multi(v0, v1) => {
                    ::metrique::InflectableEntry::<NS>::write(v0, writer);
                }
            }
        }
        fn sample_group(
            &self,
        ) -> impl ::std::iter::Iterator<
            Item = (::std::borrow::Cow<'static, str>, ::std::borrow::Cow<'static, str>),
        > {
            let __metrique_self = self;
            match __metrique_self {
                StatusEntry::Active { .. } => {
                    StatusEntrySampleGroupIter::V0(::std::iter::empty())
                }
                StatusEntry::Pending(v0) => {
                    StatusEntrySampleGroupIter::V1(
                        ::metrique::InflectableEntry::<NS>::sample_group(v0),
                    )
                }
                StatusEntry::Multi(v0, v1) => {
                    StatusEntrySampleGroupIter::V2(
                        ::metrique::InflectableEntry::<NS>::sample_group(v0),
                    )
                }
            }
        }
    }
};
impl metrique::CloseValue for &'_ Status {
    type Closed = StatusEntry;
    fn close(self) -> Self::Closed {
        macro_rules! __metrique_self_expr {
            () => {
                self
            };
        }
        #[allow(deprecated)]
        match __metrique_self_expr!() {
            Status::Active { count, latency } => {
                StatusEntry::Active {
                    count: metrique::CloseValue::close(count),
                    latency: metrique::CloseValue::close(latency).into(),
                }
            }
            Status::Pending(v0) => {
                StatusEntry::Pending(::metrique::CloseValue::close(v0))
            }
            Status::Multi(v0, v1) => {
                StatusEntry::Multi(
                    ::metrique::CloseValue::close(v0),
                    ::metrique::CloseValue::close(v1),
                )
            }
        }
    }
}
impl metrique::CloseValue for Status {
    type Closed = StatusEntry;
    fn close(self) -> Self::Closed {
        <&Self>::close(&self)
    }
}
impl ::std::convert::From<&'_ Status> for &'static str {
    fn from(value: &Status) -> Self {
        #[allow(deprecated)]
        match value {
            Status::Active { .. } => "Active",
            Status::Pending(_) => "Pending",
            Status::Multi(_, _) => "Multi",
        }
    }
}
impl ::std::convert::From<Status> for &'static str {
    fn from(value: Status) -> Self {
        <&str as ::std::convert::From<&_>>::from(&value)
    }
}
impl ::metrique::writer::core::SampleGroup for Status {
    fn as_sample_group(&self) -> ::std::borrow::Cow<'static, str> {
        ::std::borrow::Cow::Borrowed(::std::convert::Into::<&str>::into(self))
    }
}

enum Operation {
    Read { bytes: u64 },
    Write(Nested),
}
#[doc(hidden)]
pub enum OperationEntry {
    #[deprecated(
        note = "these fields will become private in a future release. To introspect an entry, use `metrique::writer::test_util::test_entry`"
    )]
    #[doc(hidden)]
    Read {
        #[deprecated(
            note = "these fields will become private in a future release. To introspect an entry, use `metrique::writer::test_util::test_entry`"
        )]
        #[doc(hidden)]
        bytes: <u64 as metrique::CloseValue>::Closed,
    },
    #[deprecated(
        note = "these fields will become private in a future release. To introspect an entry, use `metrique::writer::test_util::test_entry`"
    )]
    #[doc(hidden)]
    Write(<Nested as metrique::CloseValue>::Closed),
}
const _: () = {
    enum OperationEntrySampleGroupIter<V0, V1> {
        V0(V0),
        V1(V1),
    }
    impl<
        V0: ::std::iter::Iterator<
                Item = (
                    ::std::borrow::Cow<'static, str>,
                    ::std::borrow::Cow<'static, str>,
                ),
            >,
        V1: ::std::iter::Iterator<
                Item = (
                    ::std::borrow::Cow<'static, str>,
                    ::std::borrow::Cow<'static, str>,
                ),
            >,
    > ::std::iter::Iterator for OperationEntrySampleGroupIter<V0, V1> {
        type Item = (::std::borrow::Cow<'static, str>, ::std::borrow::Cow<'static, str>);
        fn next(&mut self) -> ::std::option::Option<Self::Item> {
            match self {
                OperationEntrySampleGroupIter::V0(iter) => iter.next(),
                OperationEntrySampleGroupIter::V1(iter) => iter.next(),
            }
        }
    }
    #[expect(deprecated)]
    impl<NS: ::metrique::NameStyle> ::metrique::InflectableEntry<NS> for OperationEntry {
        fn write<'__metrique_write>(
            &'__metrique_write self,
            writer: &mut impl ::metrique::writer::EntryWriter<'__metrique_write>,
        ) {
            let __metrique_self = self;
            #[allow(deprecated)]
            match __metrique_self {
                OperationEntry::Read { bytes } => {
                    ::metrique::writer::EntryWriter::value(
                        writer,
                        {
                            struct BytesPreserve;
                            impl ::metrique::concat::ConstStr for BytesPreserve {
                                const VAL: &'static str = "bytes";
                            }
                            struct BytesKebab;
                            impl ::metrique::concat::ConstStr for BytesKebab {
                                const VAL: &'static str = "bytes";
                            }
                            struct BytesPascal;
                            impl ::metrique::concat::ConstStr for BytesPascal {
                                const VAL: &'static str = "Bytes";
                            }
                            struct BytesSnake;
                            impl ::metrique::concat::ConstStr for BytesSnake {
                                const VAL: &'static str = "bytes";
                            }
                            ::metrique::concat::const_str_value::<
                                <NS as ::metrique::NameStyle>::Inflect<
                                    BytesPreserve,
                                    BytesPascal,
                                    BytesSnake,
                                    BytesKebab,
                                >,
                            >()
                        },
                        bytes,
                    );
                }
                OperationEntry::Write(v0) => {
                    ::metrique::InflectableEntry::<NS>::write(v0, writer);
                }
            }
        }
        fn sample_group(
            &self,
        ) -> impl ::std::iter::Iterator<
            Item = (::std::borrow::Cow<'static, str>, ::std::borrow::Cow<'static, str>),
        > {
            let __metrique_self = self;
            match __metrique_self {
                OperationEntry::Read { .. } => {
                    OperationEntrySampleGroupIter::V0(::std::iter::empty())
                }
                OperationEntry::Write(v0) => {
                    OperationEntrySampleGroupIter::V1(
                        ::metrique::InflectableEntry::<NS>::sample_group(v0),
                    )
                }
            }
        }
    }
};
impl metrique::CloseValue for Operation {
    type Closed = OperationEntry;
    fn close(self) -> Self::Closed {
        macro_rules! __metrique_self_expr {
            () => {
                self
            };
        }
        #[allow(deprecated)]
        match __metrique_self_expr!() {
            Operation::Read { bytes } => {
                OperationEntry::Read {
                    bytes: metrique::CloseValue::close(bytes),
                }
            }
            Operation::Write(v0) => {
                OperationEntry::Write(::metrique::CloseValue::close(v0))
            }
        }
    }
}
impl ::std::convert::From<&'_ Operation> for &'static str {
    fn from(value: &Operation) -> Self {
        #[allow(deprecated)]
        match value {
            Operation::Read { .. } => "Read",
            Operation::Write(_) => "Write",
        }
    }
}
impl ::std::convert::From<Operation> for &'static str {
    fn from(value: Operation) -> Self {
        <&str as ::std::convert::From<&_>>::from(&value)
    }
}
impl ::metrique::writer::core::SampleGroup for Operation {
    fn as_sample_group(&self) -> ::std::borrow::Cow<'static, str> {
        ::std::borrow::Cow::Borrowed(::std::convert::Into::<&str>::into(self))
    }
}
#[doc = concat!(
    "Metrics guard returned from [`", "Operation",
    "::append_on_drop`], closes the entry and appends the metrics to a sink when dropped."
)]
type OperationGuard<Q = ::metrique::DefaultSink> = ::metrique::AppendAndCloseOnDrop<
    Operation,
    Q,
>;
#[doc = concat!(
    "Metrics handle returned from [`", "OperationGuard",
    "::handle`], similar to an `Arc<", "OperationGuard", ">`."
)]
type OperationHandle<Q = ::metrique::DefaultSink> = ::metrique::AppendAndCloseOnDropHandle<
    Operation,
    Q,
>;
impl Operation {
    ///Creates an AppendAndCloseOnDrop that will be automatically appended to `sink` on drop.
    fn append_on_drop<
        Q: ::metrique::writer::EntrySink<::metrique::RootEntry<OperationEntry>> + Send
            + Sync + 'static,
    >(self, sink: Q) -> OperationGuard<Q> {
        ::metrique::append_and_close(self, sink)
    }
}