pub enum TapMode {
Resolve,
ResolveAndTap,
DaemonProxySynthesize,
}Expand description
POST /tap mode discriminator.
Variants§
Resolve
Runner returns only the matched frame; host normalizes + injects
via /tap-at-norm-coord (v1.6 c5 default).
ResolveAndTap
Runner resolves AND taps (legacy v1.1 path A, host-HID-based).
DaemonProxySynthesize
Runner resolves selector then synthesizes the touch event via the
XCTRunnerDaemonSession daemonProxy (v4.0 c3 swift G8 fix —
bypasses the XCUIElement gesture recognizer chain so RN
Pressable RCTTouchHandler UIGestureRecognizer receives the
touch and fires the JS-thread onPress callback reliably).
Trait Implementations§
impl Copy for TapMode
Source§impl<'de> Deserialize<'de> for TapMode
impl<'de> Deserialize<'de> for TapMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TapMode
impl StructuralPartialEq for TapMode
Auto Trait Implementations§
impl Freeze for TapMode
impl RefUnwindSafe for TapMode
impl Send for TapMode
impl Sync for TapMode
impl Unpin for TapMode
impl UnsafeUnpin for TapMode
impl UnwindSafe for TapMode
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