Struct KeyEventRecord

Source
pub struct KeyEventRecord {
    pub key_down: bool,
    pub repeat_count: u16,
    pub virtual_key_code: u16,
    pub virtual_scan_code: u16,
    pub u_char: char,
    pub control_key_state: ControlKeyState,
}
Expand description

Represents a KEY_EVENT_RECORD which describes a keyboard input event in a console INPUT_RECORD structure.

link: https://docs.microsoft.com/en-us/windows/console/key-event-record-str

Fields§

§key_down: bool

If the key is pressed, this member is TRUE. Otherwise, this member is FALSE (the key is released).

§repeat_count: u16

The repeat count, which indicates that a key is being held down. For example, when a key is held down, you might get five events with this member equal to 1, one event with this member equal to 5, or multiple events with this member greater than or equal to 1.

§virtual_key_code: u16

A virtual-key code that identifies the given key in a device-independent manner.

§virtual_scan_code: u16

The virtual scan code of the given key that represents the device-dependent value generated by the keyboard hardware.

§u_char: char

The translated Unicode character (as a WCHAR, or utf-16 value)

§control_key_state: ControlKeyState

The state of the control keys.

Trait Implementations§

Source§

impl Clone for KeyEventRecord

Source§

fn clone(&self) -> KeyEventRecord

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for KeyEventRecord

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<KEY_EVENT_RECORD> for KeyEventRecord

Source§

fn from(record: KEY_EVENT_RECORD) -> Self

Converts to this type from the input type.
Source§

impl Into<INPUT_RECORD> for KeyEventRecord

Source§

fn into(self) -> INPUT_RECORD

Converts this type into the (usually inferred) input type.
Source§

impl Into<KEY_EVENT_RECORD> for KeyEventRecord

Source§

fn into(self) -> KEY_EVENT_RECORD

Converts this type into the (usually inferred) input type.
Source§

impl PartialEq for KeyEventRecord

Source§

fn eq(&self, other: &KeyEventRecord) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for KeyEventRecord

Source§

impl Eq for KeyEventRecord

Source§

impl StructuralPartialEq for KeyEventRecord

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.