[][src]Enum imgui::ImGuiKey

#[repr(C)]
pub enum ImGuiKey { Tab, LeftArrow, RightArrow, UpArrow, DownArrow, PageUp, PageDown, Home, End, Insert, Delete, Backspace, Space, Enter, Escape, A, C, V, X, Y, Z, }

A key identifier (ImGui-side enum)

Variants

TabLeftArrowRightArrowUpArrowDownArrowPageUpPageDownHomeEndInsertDeleteBackspaceSpaceEnterEscapeA

for text edit CTRL+A: select all

C

for text edit CTRL+C: copy

V

for text edit CTRL+V: paste

X

for text edit CTRL+X: cut

Y

for text edit CTRL+Y: redo

Z

for text edit CTRL+Z: undo

Methods

impl ImGuiKey[src]

pub const VARIANTS: [ImGuiKey; 21][src]

All possible ImGuiKey variants

pub const COUNT: usize[src]

Trait Implementations

impl Debug for ImGuiKey[src]

impl Copy for ImGuiKey[src]

impl Clone for ImGuiKey[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<ImGuiKey> for ImGuiKey[src]

#[must_use]
default fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Eq for ImGuiKey[src]

Auto Trait Implementations

impl Send for ImGuiKey

impl Sync for ImGuiKey

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]