aboutsummaryrefslogtreecommitdiff
path: root/vendor/console/examples
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/console/examples')
-rw-r--r--vendor/console/examples/colors.rs14
-rw-r--r--vendor/console/examples/colors256.rs17
-rw-r--r--vendor/console/examples/cursor_at.rs30
-rw-r--r--vendor/console/examples/term.rs33
4 files changed, 0 insertions, 94 deletions
diff --git a/vendor/console/examples/colors.rs b/vendor/console/examples/colors.rs
deleted file mode 100644
index 69c51fd..0000000
--- a/vendor/console/examples/colors.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-use console::style;
-
-fn main() {
- println!(
- "This is red on black: {:010x}",
- style(42).red().on_black().bold()
- );
- println!("This is reversed: [{}]", style("whatever").reverse());
- println!("This is cyan: {}", style("whatever").cyan());
- eprintln!(
- "This is black bright: {}",
- style("whatever").for_stderr().bright().black()
- );
-}
diff --git a/vendor/console/examples/colors256.rs b/vendor/console/examples/colors256.rs
deleted file mode 100644
index 60acb88..0000000
--- a/vendor/console/examples/colors256.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-use console::style;
-
-fn main() {
- for i in 0..=255 {
- print!("{:03} ", style(i).color256(i));
- if i % 16 == 15 {
- println!();
- }
- }
-
- for i in 0..=255 {
- print!("{:03} ", style(i).black().on_color256(i));
- if i % 16 == 15 {
- println!();
- }
- }
-}
diff --git a/vendor/console/examples/cursor_at.rs b/vendor/console/examples/cursor_at.rs
deleted file mode 100644
index 9a1bb3d..0000000
--- a/vendor/console/examples/cursor_at.rs
+++ /dev/null
@@ -1,30 +0,0 @@
-extern crate console;
-
-use std::io;
-use std::thread;
-use std::time::Duration;
-
-use console::{style, Term};
-
-fn write_chars() -> io::Result<()> {
- let term = Term::stdout();
- let (heigth, width) = term.size();
- for x in 0..width {
- for y in 0..heigth {
- term.move_cursor_to(x as usize, y as usize)?;
- let text = if (x + y) % 2 == 0 {
- format!("{}", style(x % 10).black().on_red())
- } else {
- format!("{}", style(x % 10).red().on_black())
- };
-
- term.write_str(&text)?;
- thread::sleep(Duration::from_micros(600));
- }
- }
- Ok(())
-}
-
-fn main() {
- write_chars().unwrap();
-}
diff --git a/vendor/console/examples/term.rs b/vendor/console/examples/term.rs
deleted file mode 100644
index a0637f7..0000000
--- a/vendor/console/examples/term.rs
+++ /dev/null
@@ -1,33 +0,0 @@
-use std::io::{self, Write};
-use std::thread;
-use std::time::Duration;
-
-use console::{style, Term};
-
-fn do_stuff() -> io::Result<()> {
- let term = Term::stdout();
- term.set_title("Counting...");
- term.write_line("Going to do some counting now")?;
- term.hide_cursor()?;
- for x in 0..10 {
- if x != 0 {
- term.move_cursor_up(1)?;
- }
- term.write_line(&format!("Counting {}/10", style(x + 1).cyan()))?;
- thread::sleep(Duration::from_millis(400));
- }
- term.show_cursor()?;
- term.clear_last_lines(1)?;
- term.write_line("Done counting!")?;
- writeln!(&term, "Hello World!")?;
-
- write!(&term, "To edit: ")?;
- let res = term.read_line_initial_text("default")?;
- writeln!(&term, "\n{}", res)?;
-
- Ok(())
-}
-
-fn main() {
- do_stuff().unwrap();
-}