1 #![allow(unused_imports)] 2 use wasm_bindgen::prelude::*; 3 #[wasm_bindgen] 4 #[doc = "The `CaretChangedReason` enum."] 5 #[doc = ""] 6 #[doc = "*This API requires the following crate features to be activated: `CaretChangedReason`*"] 7 #[derive(Debug, Clone, Copy, PartialEq, Eq)] 8 pub enum CaretChangedReason { 9 Visibilitychange = "visibilitychange", 10 Updateposition = "updateposition", 11 Longpressonemptycontent = "longpressonemptycontent", 12 Taponcaret = "taponcaret", 13 Presscaret = "presscaret", 14 Releasecaret = "releasecaret", 15 Scroll = "scroll", 16 } 17