pub fn bold()Expand description
Enable bold.
Examples found in repository?
examples/style.rs (line 6)
3fn main() {
4 let _g = guard::Reset;
5
6 style::bold();
7 print!("This is ");
8
9 style::with::italic(|| {
10 print!("italic and bold text");
11 });
12
13 println!(", but this is just bold.");
14}