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
use String;
use Display;
use crateformat;
/// A trait for converting a value to a [`String`] with integrated HTML styling.
///
/// This trait is automatically implemented for any type which implements the
/// [`stylish::Display`] trait. As such, `ToHtmlString` shouldn’t be implemented
/// directly: [`stylish::Display`] should be implemented instead, and you get
/// the `ToHtmlString` implementation for free.
///
/// [`stylish::Display`]: `stylish_core::Display`