pub struct AxClickArgs {
pub selector: AxSelectorArgs,
pub target: AxTargetArgs,
pub allow_coordinate_fallback: bool,
pub reselect_before_click: bool,
pub fallback_order: Vec<AxClickFallbackStage>,
pub wait_timeout_ms: Option<u64>,
pub wait_poll_ms: Option<u64>,
pub gate: AxActionGateArgs,
pub postcondition: AxPostconditionArgs,
}Fields§
§selector: AxSelectorArgs§target: AxTargetArgs§allow_coordinate_fallback: boolAllow coordinate fallback when AX press is unavailable.
reselect_before_click: boolRe-resolve selector to node id immediately before click execution.
fallback_order: Vec<AxClickFallbackStage>Configure click fallback stage order (ax-press,ax-confirm,frame-center,coordinate).
wait_timeout_ms: Option<u64>Unified wait-policy timeout override for gate/postcondition checks.
wait_poll_ms: Option<u64>Unified wait-policy poll interval override for gate/postcondition checks.
gate: AxActionGateArgs§postcondition: AxPostconditionArgsTrait Implementations§
Source§impl Args for AxClickArgs
impl Args for AxClickArgs
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Clone for AxClickArgs
impl Clone for AxClickArgs
Source§fn clone(&self) -> AxClickArgs
fn clone(&self) -> AxClickArgs
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 AxClickArgs
impl Debug for AxClickArgs
Source§impl FromArgMatches for AxClickArgs
impl FromArgMatches for AxClickArgs
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Auto Trait Implementations§
impl Freeze for AxClickArgs
impl RefUnwindSafe for AxClickArgs
impl Send for AxClickArgs
impl Sync for AxClickArgs
impl Unpin for AxClickArgs
impl UnsafeUnpin for AxClickArgs
impl UnwindSafe for AxClickArgs
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