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. This is the default.
ResolveAndTap
Runner resolves AND taps (legacy host-HID-based path).
DaemonProxySynthesize
Runner resolves selector then synthesizes the touch event via the
XCTRunnerDaemonSession daemonProxy. This 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<TapMode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TapMode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TapMode
Source§impl Serialize for TapMode
impl Serialize for TapMode
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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