pub struct AxClickResult {
pub node_id: Option<String>,
pub matched_count: usize,
pub action: String,
pub used_coordinate_fallback: bool,
pub fallback_x: Option<i32>,
pub fallback_y: Option<i32>,
pub fallback_order: Vec<AxClickFallbackStage>,
pub attempted_stages: Vec<AxClickFallbackStage>,
pub selector_explain: Option<AxSelectorExplain>,
pub gates: Option<AxGateResult>,
pub postconditions: Option<AxPostconditionResult>,
}Fields§
§node_id: Option<String>§matched_count: usize§action: String§used_coordinate_fallback: bool§fallback_x: Option<i32>§fallback_y: Option<i32>§fallback_order: Vec<AxClickFallbackStage>§attempted_stages: Vec<AxClickFallbackStage>§selector_explain: Option<AxSelectorExplain>§gates: Option<AxGateResult>§postconditions: Option<AxPostconditionResult>Trait Implementations§
Source§impl Clone for AxClickResult
impl Clone for AxClickResult
Source§fn clone(&self) -> AxClickResult
fn clone(&self) -> AxClickResult
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 Debug for AxClickResult
impl Debug for AxClickResult
Source§impl Default for AxClickResult
impl Default for AxClickResult
Source§fn default() -> AxClickResult
fn default() -> AxClickResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AxClickResult
impl<'de> Deserialize<'de> for AxClickResult
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 AxClickResult
impl PartialEq for AxClickResult
Source§impl Serialize for AxClickResult
impl Serialize for AxClickResult
impl StructuralPartialEq for AxClickResult
Auto Trait Implementations§
impl Freeze for AxClickResult
impl RefUnwindSafe for AxClickResult
impl Send for AxClickResult
impl Sync for AxClickResult
impl Unpin for AxClickResult
impl UnsafeUnpin for AxClickResult
impl UnwindSafe for AxClickResult
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