goopycs
goopycs

Reputation: 223

How to intercept keystroke?

How I can intercept keystroke in Rust without any libraries?
For example: press W - print: "Press key 'W'".

Upvotes: 3

Views: 548

Answers (1)

Steve Klabnik
Steve Klabnik

Reputation: 15559

without any libraries?

There's nothing in the standard library to do this, no.

Upvotes: 3

Related Questions