pub struct SynthesizePinchGesture {
pub method: SynthesizePinchGestureMethod,
pub params: SynthesizePinchGestureParams,
}Expand description
Synthesizes a pinch gesture over a time period by issuing appropriate touch events. synthesizePinchGesture
Fields§
§method: SynthesizePinchGestureMethod§params: SynthesizePinchGestureParamsImplementations§
Source§impl SynthesizePinchGesture
impl SynthesizePinchGesture
pub fn builder() -> SynthesizePinchGestureBuilder
Source§impl SynthesizePinchGesture
impl SynthesizePinchGesture
pub const IDENTIFIER: &'static str = "Input.synthesizePinchGesture"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SynthesizePinchGesture
impl Clone for SynthesizePinchGesture
Source§fn clone(&self) -> SynthesizePinchGesture
fn clone(&self) -> SynthesizePinchGesture
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl CommandResult for SynthesizePinchGesture
impl CommandResult for SynthesizePinchGesture
type Result = SynthesizePinchGestureResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SynthesizePinchGesture
impl Debug for SynthesizePinchGesture
Source§impl<'de> Deserialize<'de> for SynthesizePinchGesture
impl<'de> Deserialize<'de> for SynthesizePinchGesture
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
Source§impl From<SynthesizePinchGesture> for BrowserProtocolCommands
impl From<SynthesizePinchGesture> for BrowserProtocolCommands
Source§fn from(v: SynthesizePinchGesture) -> Self
fn from(v: SynthesizePinchGesture) -> Self
Converts to this type from the input type.
Source§impl From<SynthesizePinchGesture> for Command
impl From<SynthesizePinchGesture> for Command
Source§fn from(v: SynthesizePinchGesture) -> Self
fn from(v: SynthesizePinchGesture) -> Self
Converts to this type from the input type.
Source§impl From<SynthesizePinchGesture> for InputCommands
impl From<SynthesizePinchGesture> for InputCommands
Source§fn from(v: SynthesizePinchGesture) -> Self
fn from(v: SynthesizePinchGesture) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SynthesizePinchGesture
impl PartialEq for SynthesizePinchGesture
Source§impl Serialize for SynthesizePinchGesture
impl Serialize for SynthesizePinchGesture
Source§impl TryFrom<BrowserProtocolCommands> for SynthesizePinchGesture
impl TryFrom<BrowserProtocolCommands> for SynthesizePinchGesture
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <SynthesizePinchGesture as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SynthesizePinchGesture as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SynthesizePinchGesture
impl TryFrom<Command> for SynthesizePinchGesture
Source§impl TryFrom<InputCommands> for SynthesizePinchGesture
impl TryFrom<InputCommands> for SynthesizePinchGesture
Source§type Error = InputCommands
type Error = InputCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: InputCommands,
) -> Result<Self, <SynthesizePinchGesture as TryFrom<InputCommands>>::Error>
fn try_from( e: InputCommands, ) -> Result<Self, <SynthesizePinchGesture as TryFrom<InputCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SynthesizePinchGesture
Auto Trait Implementations§
impl Freeze for SynthesizePinchGesture
impl RefUnwindSafe for SynthesizePinchGesture
impl Send for SynthesizePinchGesture
impl Sync for SynthesizePinchGesture
impl Unpin for SynthesizePinchGesture
impl UnsafeUnpin for SynthesizePinchGesture
impl UnwindSafe for SynthesizePinchGesture
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