[][src]Function term_basics_linux::reset_style

pub fn reset_style()

Resets the style. It sets the style to the default style.

Example

use term_basics_linux as tbl;
tbl::set_colours(tbl::UserColour::Cyan, tbl::UserColour::Red);
tbl::set_style(tbl::TextStyle::Blink);
tbl::println("im am cyan on red and blinking");
tbl::reset_style();
tbl::println("i am still cyan on red but im am not blinking");