pub struct LocatorOptions {
pub timeout: Duration,
pub poll_interval: Duration,
pub strict: bool,
pub visible: bool,
}Expand description
Locator options for customizing behavior
Fields§
§timeout: DurationTimeout for auto-waiting
poll_interval: DurationPolling interval for auto-waiting
strict: boolWhether to require strict single-element match
visible: boolWhether the element must be visible
Trait Implementations§
Source§impl Clone for LocatorOptions
impl Clone for LocatorOptions
Source§fn clone(&self) -> LocatorOptions
fn clone(&self) -> LocatorOptions
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 LocatorOptions
impl Debug for LocatorOptions
Auto Trait Implementations§
impl Freeze for LocatorOptions
impl RefUnwindSafe for LocatorOptions
impl Send for LocatorOptions
impl Sync for LocatorOptions
impl Unpin for LocatorOptions
impl UnsafeUnpin for LocatorOptions
impl UnwindSafe for LocatorOptions
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