log-update 0.1.0

Log by overwriting the previous output in the terminal
Documentation
  • Coverage
  • 83.33%
    5 out of 6 items documented0 out of 5 items with examples
  • Size
  • Source code size: 8.84 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.36 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • LinusU/rust-log-update
    5 2 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • LinusU

Log Update

Log by overwriting the previous output in the terminal.

Useful for rendering progress bars, animations, etc.

Usage

This example will count down from 3 and then display Lift off! 🚀.

extern crate log_update;

use log_update::LogUpdate;

use std::io::stdout;
use std::thread::sleep;
use std::time::Duration;

fn main() {
    // Construct the log updater
    let mut log_update = LogUpdate::new(stdout()).unwrap();

    for i in [3, 2, 1].iter() {
        // Update log to show message
        log_update.render(&format!("Lift off in {}...", i)).unwrap();

        // Sleep for one second
        sleep(Duration::from_secs(1));
    }

    // Print final message
    log_update.render("Lift off! 🚀").unwrap();
}

API

See documentation

Inspiration

Heavily inspired by @sindresorhus’ excellent log-update.