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
//! A simple interface for extending external types with custom implementations of [Debug] and
//! [Display] traits.
//!
//! All examples are in [this directory].
//!
//! [Debug]: core::fmt::Debug
//! [Display]: core::fmt::Display
//! [this directory]: https://github.com/ilyavenner/fmt-ext/tree/master/examples
pub use crateCarrier;
use crate::;
/// Contains [Carrier] implementation.
/// A trait extension which adds a `.debug()` method like [Path::display] does this for any type.
/// Its method returns an object that implements [Debug] and can be used for formatting.
///
/// [Path::display]: https://doc.rust-lang.org/stable/std/path/struct.Path.html#method.display
///
/// [Debug]: core::fmt::Debug
/// A trait extension which adds a method like [Path::display] does this for any type. Its method
/// returns an object that implements [Display] and can be used for formatting.
///
/// [Path::display]: https://doc.rust-lang.org/stable/std/path/struct.Path.html#method.display
/// [Display]: core::fmt::Display