mousetrap 0.1.0

Detect starting from Windows explorer in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
use std::io;

fn main() {
    println!("started_by_explorer: {}", mousetrap::started_by_explorer());

    println!("Press Enter to exit...");

    let mut s = String::new();
    io::stdin().read_line(&mut s).unwrap();
}