pub struct WaitResult {
pub condition: &'static str,
pub attempts: u32,
pub elapsed_ms: u64,
pub terminal_status: &'static str,
pub matched_count: Option<usize>,
pub selector_explain: Option<AxSelectorExplain>,
}Fields§
§condition: &'static str§attempts: u32§elapsed_ms: u64§terminal_status: &'static str§matched_count: Option<usize>§selector_explain: Option<AxSelectorExplain>Trait Implementations§
Source§impl Clone for WaitResult
impl Clone for WaitResult
Source§fn clone(&self) -> WaitResult
fn clone(&self) -> WaitResult
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 WaitResult
impl Debug for WaitResult
Auto Trait Implementations§
impl Freeze for WaitResult
impl RefUnwindSafe for WaitResult
impl Send for WaitResult
impl Sync for WaitResult
impl Unpin for WaitResult
impl UnsafeUnpin for WaitResult
impl UnwindSafe for WaitResult
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