pub enum ElementQueryWaitOptions {
WaitDefault,
Wait {
timeout: Duration,
interval: Duration,
},
NoWait,
}
Expand description
Options for wait characteristics for an element query.
Variants§
WaitDefault
Use the default poller.
Wait
Use a poller with the specified timeout and interval.
NoWait
Do not wait. This uses a poller that quits immediately.
Trait Implementations§
Source§impl Clone for ElementQueryWaitOptions
impl Clone for ElementQueryWaitOptions
Source§fn clone(&self) -> ElementQueryWaitOptions
fn clone(&self) -> ElementQueryWaitOptions
Returns a copy 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 ElementQueryWaitOptions
impl Debug for ElementQueryWaitOptions
Auto Trait Implementations§
impl Freeze for ElementQueryWaitOptions
impl RefUnwindSafe for ElementQueryWaitOptions
impl Send for ElementQueryWaitOptions
impl Sync for ElementQueryWaitOptions
impl Unpin for ElementQueryWaitOptions
impl UnwindSafe for ElementQueryWaitOptions
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