Function winput::press[][src]

pub fn press<K: Keylike>(key: K)

Synthesize an event that presses the key.

If the function fails to synthesize the input, no error is emited and the function fails silently. If you wish to retreive an eventual error, use send_inputs instead.

Panics

This function panics if key was not a valid key. For example, any char that is above 0x0000ffff cannot be turned into an Input.

Example

winput::press('A').unwrap();