Enum webdriver::actions::ActionsType
source · pub enum ActionsType {
Null {
actions: Vec<NullActionItem>,
},
Key {
actions: Vec<KeyActionItem>,
},
Pointer {
parameters: PointerActionParameters,
actions: Vec<PointerActionItem>,
},
Wheel {
actions: Vec<WheelActionItem>,
},
}
Variants§
Null
Fields
§
actions: Vec<NullActionItem>
Key
Fields
§
actions: Vec<KeyActionItem>
Pointer
Wheel
Fields
§
actions: Vec<WheelActionItem>
Trait Implementations§
source§impl Debug for ActionsType
impl Debug for ActionsType
source§impl<'de> Deserialize<'de> for ActionsType
impl<'de> Deserialize<'de> for ActionsType
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 ActionsType
impl PartialEq for ActionsType
source§fn eq(&self, other: &ActionsType) -> bool
fn eq(&self, other: &ActionsType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ActionsType
impl Serialize for ActionsType
impl StructuralPartialEq for ActionsType
Auto Trait Implementations§
impl Freeze for ActionsType
impl RefUnwindSafe for ActionsType
impl Send for ActionsType
impl Sync for ActionsType
impl Unpin for ActionsType
impl UnwindSafe for ActionsType
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