#[repr(u32)]pub enum InputButton {
Show 63 variants
Key0 = 0,
Key1 = 1,
Key2 = 2,
Key3 = 3,
Key4 = 4,
Key5 = 5,
Key6 = 6,
Key7 = 7,
Key8 = 8,
Key9 = 9,
A = 10,
B = 11,
C = 12,
D = 13,
E = 14,
F = 15,
G = 16,
H = 17,
I = 18,
J = 19,
K = 20,
L = 21,
M = 22,
N = 23,
O = 24,
P = 25,
Q = 26,
R = 27,
S = 28,
T = 29,
U = 30,
V = 31,
W = 32,
X = 33,
Y = 34,
Z = 35,
Divide = 36,
Multiply = 37,
Subtract = 38,
Plus = 39,
F1 = 40,
F2 = 41,
F3 = 42,
F4 = 43,
F5 = 44,
F6 = 45,
F7 = 46,
F8 = 47,
F9 = 48,
F10 = 49,
F11 = 50,
F12 = 51,
Home = 52,
End = 53,
Insert = 54,
Delete = 55,
PageUp = 56,
PageDn = 57,
Backspace = 58,
Tab = 59,
PrtScrn = 60,
Pause = 61,
Max = 62,
}Expand description
RenderDoc input buttons (strongly typed wrapper).
Variants§
Key0 = 0
Key1 = 1
Key2 = 2
Key3 = 3
Key4 = 4
Key5 = 5
Key6 = 6
Key7 = 7
Key8 = 8
Key9 = 9
A = 10
B = 11
C = 12
D = 13
E = 14
F = 15
G = 16
H = 17
I = 18
J = 19
K = 20
L = 21
M = 22
N = 23
O = 24
P = 25
Q = 26
R = 27
S = 28
T = 29
U = 30
V = 31
W = 32
X = 33
Y = 34
Z = 35
Divide = 36
Multiply = 37
Subtract = 38
Plus = 39
F1 = 40
F2 = 41
F3 = 42
F4 = 43
F5 = 44
F6 = 45
F7 = 46
F8 = 47
F9 = 48
F10 = 49
F11 = 50
F12 = 51
Home = 52
End = 53
Insert = 54
Delete = 55
PageUp = 56
PageDn = 57
Backspace = 58
Tab = 59
PrtScrn = 60
Pause = 61
Max = 62
Trait Implementations§
Source§impl Clone for InputButton
impl Clone for InputButton
Source§fn clone(&self) -> InputButton
fn clone(&self) -> InputButton
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InputButton
impl Debug for InputButton
Source§impl From<InputButton> for RENDERDOC_InputButton
impl From<InputButton> for RENDERDOC_InputButton
Source§fn from(value: InputButton) -> Self
fn from(value: InputButton) -> Self
Converts to this type from the input type.
Source§impl Hash for InputButton
impl Hash for InputButton
Source§impl PartialEq for InputButton
impl PartialEq for InputButton
impl Copy for InputButton
impl Eq for InputButton
impl StructuralPartialEq for InputButton
Auto Trait Implementations§
impl Freeze for InputButton
impl RefUnwindSafe for InputButton
impl Send for InputButton
impl Sync for InputButton
impl Unpin for InputButton
impl UnwindSafe for InputButton
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more