blob: 5cfdfa8739cd1666a302361e0791ff8af56a7021 (
plain)
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
|
mod truncate;
mod color;
pub use truncate::*;
pub use color::*;
pub trait Formatting<'r> {
const BOLD: &'r str = "\x02";
const ITALIC: &'r str = "\x1D";
const UNDERLINE: &'r str = "\x1F";
const STRIKETHROUGH: &'r str = "\x1E";
const MONOSPACE: &'r str = "\x11";
const COLOR: &'r str = "\x03";
fn bold(self) -> Self;
fn italic(self) -> Self;
fn underline(self) -> Self;
fn strikethrough(self) -> Self;
fn monospace(self) -> Self;
// fn color(self, color: Color) -> Self;
}
impl<'r> Formatting<'r> for String {
fn bold(mut self) -> Self {
self.insert_str(0, Self::BOLD);
self.push_str(Self::BOLD);
return self;
}
fn italic(mut self) -> Self {
self.insert_str(0, Self::ITALIC);
self.push_str(Self::ITALIC);
return self;
}
fn underline(mut self) -> Self {
self.insert_str(0, Self::UNDERLINE);
self.push_str(Self::UNDERLINE);
return self;
}
fn strikethrough(mut self) -> Self {
self.insert_str(0, Self::STRIKETHROUGH);
self.push_str(Self::STRIKETHROUGH);
return self;
}
fn monospace(mut self) -> Self {
self.insert_str(0, Self::MONOSPACE);
self.push_str(Self::MONOSPACE);
return self;
}
// TODO implement color codes
// fn color(mut self, foreground: Option<Color>, background: Option<Color>) -> Self {
// self.insert_str(0, Self::COLOR);
// self.push_str(Self::COLOR);
// return self;
// }
}
#[cfg(all(test, feature = "bench"))]
mod bench {
use super::*;
use test::Bencher;
#[bench]
fn bench_mut(b: &mut Bencher) {
b.iter(|| {
let mut src = "test".to_string();
src.bold()
});
}
#[bench]
fn bench_format(b: &mut Bencher) {
b.iter(|| {
let mut src = "test".to_string();
src.italic()
});
}
}
|