Struct chrome_remote_interface_model::input::SynthesizeScrollGestureCommand [−][src]
Synthesizes a scroll gesture over a time period by issuing appropriate touch events.
Implementations
impl SynthesizeScrollGestureCommand[src]
pub fn builder() -> SynthesizeScrollGestureCommandBuilder[src]
pub fn x(&self) -> f64[src]
X coordinate of the start of the gesture in CSS pixels.
pub fn y(&self) -> f64[src]
Y coordinate of the start of the gesture in CSS pixels.
pub fn x_distance(&self) -> Option<&f64>[src]
The distance to scroll along the X axis (positive to scroll left).
pub fn y_distance(&self) -> Option<&f64>[src]
The distance to scroll along the Y axis (positive to scroll up).
pub fn x_overscroll(&self) -> Option<&f64>[src]
The number of additional pixels to scroll back along the X axis, in addition to the given distance.
pub fn y_overscroll(&self) -> Option<&f64>[src]
The number of additional pixels to scroll back along the Y axis, in addition to the given distance.
pub fn prevent_fling(&self) -> Option<&bool>[src]
Prevent fling (default: true).
pub fn speed(&self) -> Option<&u32>[src]
Swipe speed in pixels per second (default: 800).
pub fn gesture_source_type(&self) -> Option<&JsonValue>[src]
Which type of input events to be generated (default: 'default', which queries the platform for the preferred input type).
pub fn repeat_count(&self) -> Option<&u32>[src]
The number of times to repeat the gesture (default: 0).
pub fn repeat_delay_ms(&self) -> Option<&u32>[src]
The number of milliseconds delay between each repeat. (default: 250).
pub fn interaction_marker_name(&self) -> Option<&String>[src]
The name of the interaction markers to generate, if not empty (default: "").
Trait Implementations
impl Clone for SynthesizeScrollGestureCommand[src]
fn clone(&self) -> SynthesizeScrollGestureCommand[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Command for SynthesizeScrollGestureCommand[src]
type Return = SynthesizeScrollGestureReturn
Return type.
const METHOD: &'static str[src]
fn into_request(self, session_id: Option<SessionId>, id: u32) -> Request<Self> where
Self: Sized, [src]
Self: Sized,
impl Debug for SynthesizeScrollGestureCommand[src]
impl<'de> Deserialize<'de> for SynthesizeScrollGestureCommand[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Serialize for SynthesizeScrollGestureCommand[src]
Auto Trait Implementations
impl RefUnwindSafe for SynthesizeScrollGestureCommand[src]
impl Send for SynthesizeScrollGestureCommand[src]
impl Sync for SynthesizeScrollGestureCommand[src]
impl Unpin for SynthesizeScrollGestureCommand[src]
impl UnwindSafe for SynthesizeScrollGestureCommand[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,