#[repr(u16)]pub enum EventKind {
Show 100 variants
All = 0,
Pressed = 1,
Pressing = 2,
PressLost = 3,
ShortClicked = 4,
SingleClicked = 5,
DoubleClicked = 6,
TripleClicked = 7,
LongPressed = 8,
LongPressedRepeat = 9,
Clicked = 10,
Released = 11,
ScrollBegin = 12,
ScrollThrowBegin = 13,
ScrollEnd = 14,
Scroll = 15,
Gesture = 16,
Key = 17,
Rotary = 18,
Focused = 19,
Defocused = 20,
Leave = 21,
HitTest = 22,
InputDeviceReset = 23,
HoverOver = 24,
HoverLeave = 25,
CoverCheck = 26,
RefreshExtDrawSize = 27,
DrawMainBegin = 28,
DrawMain = 29,
DrawMainEnd = 30,
DrawPostBegin = 31,
DrawPost = 32,
DrawPostEnd = 33,
DrawTaskAdded = 34,
ValueChanged = 35,
Insert = 36,
Refresh = 37,
Ready = 38,
Cancel = 39,
Create = 40,
Delete = 41,
ChildChanged = 42,
ChildCreated = 43,
ChildDeleted = 44,
ScreenUnloadStart = 45,
ScreenLoadStart = 46,
ScreenLoaded = 47,
ScreenUnloaded = 48,
SizeChanged = 49,
StyleChanged = 50,
LayoutChanged = 51,
GetSelfSize = 52,
InvalidateArea = 53,
ResolutionChanged = 54,
ColorFormatChanged = 55,
RefreshRequest = 56,
RefreshStart = 57,
RefreshReady = 58,
RenderStart = 59,
RenderReady = 60,
FlushStart = 61,
FlushFinish = 62,
FlushWaitStart = 63,
FlushWaitFinish = 64,
VerticalSynchronization = 65,
Last = 67,
Custom1 = 68,
Custom2 = 69,
Custom3 = 70,
Custom4 = 71,
Custom5 = 72,
Custom6 = 73,
Custom7 = 74,
Custom8 = 75,
Custom9 = 76,
Custom10 = 77,
Custom11 = 78,
Custom12 = 79,
Custom13 = 80,
Custom14 = 81,
Custom15 = 82,
Custom16 = 83,
Custom17 = 84,
Custom18 = 85,
Custom19 = 86,
Custom20 = 87,
Custom21 = 88,
Custom22 = 89,
Custom23 = 90,
Custom24 = 91,
Custom25 = 92,
Custom26 = 93,
Custom27 = 94,
Custom28 = 95,
Custom29 = 96,
Custom30 = 97,
Custom31 = 98,
Custom32 = 99,
Preprocess = 32_768,
}
Variants§
All = 0
Pressed = 1
Pressing = 2
PressLost = 3
ShortClicked = 4
SingleClicked = 5
DoubleClicked = 6
TripleClicked = 7
LongPressed = 8
LongPressedRepeat = 9
Clicked = 10
Released = 11
ScrollBegin = 12
ScrollThrowBegin = 13
ScrollEnd = 14
Scroll = 15
Gesture = 16
Key = 17
Rotary = 18
Focused = 19
Defocused = 20
Leave = 21
HitTest = 22
InputDeviceReset = 23
HoverOver = 24
HoverLeave = 25
CoverCheck = 26
RefreshExtDrawSize = 27
DrawMainBegin = 28
DrawMain = 29
DrawMainEnd = 30
DrawPostBegin = 31
DrawPost = 32
DrawPostEnd = 33
DrawTaskAdded = 34
ValueChanged = 35
Insert = 36
Refresh = 37
Ready = 38
Cancel = 39
Create = 40
Delete = 41
ChildChanged = 42
ChildCreated = 43
ChildDeleted = 44
ScreenUnloadStart = 45
ScreenLoadStart = 46
ScreenLoaded = 47
ScreenUnloaded = 48
SizeChanged = 49
StyleChanged = 50
LayoutChanged = 51
GetSelfSize = 52
InvalidateArea = 53
ResolutionChanged = 54
ColorFormatChanged = 55
RefreshRequest = 56
RefreshStart = 57
RefreshReady = 58
RenderStart = 59
RenderReady = 60
FlushStart = 61
FlushFinish = 62
FlushWaitStart = 63
FlushWaitFinish = 64
VerticalSynchronization = 65
Last = 67
Custom1 = 68
Custom2 = 69
Custom3 = 70
Custom4 = 71
Custom5 = 72
Custom6 = 73
Custom7 = 74
Custom8 = 75
Custom9 = 76
Custom10 = 77
Custom11 = 78
Custom12 = 79
Custom13 = 80
Custom14 = 81
Custom15 = 82
Custom16 = 83
Custom17 = 84
Custom18 = 85
Custom19 = 86
Custom20 = 87
Custom21 = 88
Custom22 = 89
Custom23 = 90
Custom24 = 91
Custom25 = 92
Custom26 = 93
Custom27 = 94
Custom28 = 95
Custom29 = 96
Custom30 = 97
Custom31 = 98
Custom32 = 99
Preprocess = 32_768
Implementations§
Source§impl EventKind
impl EventKind
pub const fn into_lvgl_code(self) -> lv_event_code_t
pub const fn from_lvgl_code(code: lv_event_code_t) -> Self
Trait Implementations§
Source§impl From<EventKind> for lv_event_code_t
impl From<EventKind> for lv_event_code_t
Source§impl From<u32> for EventKind
impl From<u32> for EventKind
Source§fn from(code: lv_event_code_t) -> Self
fn from(code: lv_event_code_t) -> Self
Converts to this type from the input type.
impl Copy for EventKind
impl Eq for EventKind
impl StructuralPartialEq for EventKind
Auto Trait Implementations§
impl Freeze for EventKind
impl RefUnwindSafe for EventKind
impl Send for EventKind
impl Sync for EventKind
impl Unpin for EventKind
impl UnwindSafe for EventKind
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