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
use cratePanicFmt;
/// A wrapper type used to define methods for std types.
///
/// Std types are coerced to this type through the approach used in the
/// [`coerce_fmt`] macro.
///
/// # Example
///
/// Formatting std types with this type's `to_panicvals` methods,
/// without using macros.
///
/// use const_panic::{ArrayString, FmtArg, StdWrapper};
///
/// assert_eq!(
/// ArrayString::<99>::from_panicvals(
/// &StdWrapper("hello").to_panicvals(FmtArg::DEBUG)
/// ).unwrap(),
/// r#""hello""#
/// );
///
/// assert_eq!(
/// ArrayString::<99>::from_panicvals(
/// &StdWrapper(&[3u8, 5, 8]).to_panicvals(FmtArg::ALT_DEBUG)
/// ).unwrap(),
/// "[\n 3,\n 5,\n 8,\n]"
/// );
///
/// ```
;