Skip to main content

ohos_xcomponent_binding/data/
action.rs

1use ohos_xcomponent_sys::*;
2
3use ohos_enum_derive::EnumFrom;
4
5#[derive(Debug, Clone, Copy, PartialEq, Eq, EnumFrom)]
6#[config(
7    OH_NativeXComponent_KeyAction,
8    "OH_NativeXComponent_KeyAction_OH_NATIVEXCOMPONENT_KEY_ACTION_"
9)]
10pub enum Action {
11    Unknown,
12    Down,
13    Up,
14}