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
// src/diagnostics/ellipsis.rs : `Ellipsis`
use fmt as std_fmt;
/// Placeholder for [`Debug`](std::fmt::Debug) output that prints `"..."`.
///
/// Use [`Ellipsis`] to omit verbose or low-value field detail from logs
/// while keeping the field name visible. It suits custom
/// [`Debug`](std::fmt::Debug) implementations that show full detail only in
/// alternate form (`{:#?}`).
///
/// For sensitive values (credentials, tokens, secrets), prefer
/// [`Password`](crate::diagnostics::Password), which prints a masked run of
/// `*` characters instead.
// ///////////////////////////// end of file //////////////////////////// //