[][src]Function winput::release

pub fn release<K: Keylike>(key: K) -> Result<(), WindowsError>

Synthesizes an event that releases the key.

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::release('B').unwrap();