Struct webdriver::actions::WheelScrollAction
source · pub struct WheelScrollAction {
pub duration: Option<u64>,
pub origin: PointerOrigin,
pub x: Option<i64>,
pub y: Option<i64>,
pub deltaX: Option<i64>,
pub deltaY: Option<i64>,
}
Fields§
§duration: Option<u64>
§origin: PointerOrigin
§x: Option<i64>
§y: Option<i64>
§deltaX: Option<i64>
§deltaY: Option<i64>
Trait Implementations§
source§impl Clone for WheelScrollAction
impl Clone for WheelScrollAction
source§fn clone(&self) -> WheelScrollAction
fn clone(&self) -> WheelScrollAction
Returns a copy 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 Debug for WheelScrollAction
impl Debug for WheelScrollAction
source§impl<'de> Deserialize<'de> for WheelScrollAction
impl<'de> Deserialize<'de> for WheelScrollAction
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 PartialEq for WheelScrollAction
impl PartialEq for WheelScrollAction
source§fn eq(&self, other: &WheelScrollAction) -> bool
fn eq(&self, other: &WheelScrollAction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for WheelScrollAction
impl Serialize for WheelScrollAction
impl StructuralPartialEq for WheelScrollAction
Auto Trait Implementations§
impl Freeze for WheelScrollAction
impl RefUnwindSafe for WheelScrollAction
impl Send for WheelScrollAction
impl Sync for WheelScrollAction
impl Unpin for WheelScrollAction
impl UnwindSafe for WheelScrollAction
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