proctitle 0.1.1

A safe interface to setting process titles
Documentation
1
2
3
4
5
6
7
8
9
10
use proctitle;

fn main() {
    let mut i = 0;
    loop {
        proctitle::set_title(format!("Hello, world, {}", i));
        i += 1;
        std::thread::sleep(std::time::Duration::from_millis(500));
    }
}