Struct chrome_remote_interface_model::input::DispatchTouchEventCommandBuilder [−][src]
Implementations
impl DispatchTouchEventCommandBuilder[src]
pub fn type(&mut self, v: DispatchTouchEventCommandType) -> &mut Self[src]
Type of the touch event. TouchEnd and TouchCancel must not contain any touch points, while TouchStart and TouchMove must contains at least one.
pub fn touch_points(&mut self, v: Vec<TouchPoint>) -> &mut Self[src]
Active touch points on the touch device. One event per any changed point (compared to previous touch event in a sequence) is generated, emulating pressing/moving/releasing points one by one.
pub fn modifiers(&mut self, v: u32) -> &mut Self[src]
Bit field representing pressed modifier keys. Alt=1, Ctrl=2, Meta/Command=4, Shift=8 (default: 0).
pub fn timestamp(&mut self, v: TimeSinceEpoch) -> &mut Self[src]
Time at which the event occurred.
pub fn build(&mut self) -> Result<DispatchTouchEventCommand, &'static str>[src]
Trait Implementations
impl Clone for DispatchTouchEventCommandBuilder[src]
fn clone(&self) -> DispatchTouchEventCommandBuilder[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for DispatchTouchEventCommandBuilder[src]
impl Default for DispatchTouchEventCommandBuilder[src]
Auto Trait Implementations
impl RefUnwindSafe for DispatchTouchEventCommandBuilder[src]
impl Send for DispatchTouchEventCommandBuilder[src]
impl Sync for DispatchTouchEventCommandBuilder[src]
impl Unpin for DispatchTouchEventCommandBuilder[src]
impl UnwindSafe for DispatchTouchEventCommandBuilder[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> 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>,