uptime_lib 0.0.0

Multi-platform uptime library
Documentation

Multi-platform uptime library for Rust

Example

extern crate uptime_lib;

fn main() {
    match uptime_lib::get() {
        Ok(uptime) => {
            println!("uptime: {}.{} seconds", uptime.num_seconds(), uptime.num_milliseconds() % 1000);
        }
        Err(err) => {
            eprintln!("uptime: {}", err);
            std::process::exit(1);
        }
    }
}

Author

itchyny (https://github.com/itchyny)

License

This software is released under the MIT License, see LICENSE.