1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! iOS haptics through the C-ABI shim. Fire-and-forget; the Swift side owns
//! prepared feedback generators on the main queue. No-op on every other
//! platform.
/// A haptic to fire. The value is the kind index the Swift side maps to a
/// `UIFeedbackGenerator`:
/// - `Light`/`Medium`/`Heavy`/`Rigid` → `UIImpactFeedbackGenerator`
/// - `Success`/`Warning`/`Error` → `UINotificationFeedbackGenerator`
/// - `Selection` → `UISelectionFeedbackGenerator`