pub struct ElementPollerWithTimeout { /* private fields */ }
Expand description
Poll up to the specified timeout, with the specified interval being the minimum time elapsed between the start of each poll attempt. If the previous poll attempt took longer than the interval, the next will start immediately. Once the timeout is reached, a Timeout error will be returned regardless of the actual number of polling attempts completed.
Implementations§
Trait Implementations§
Source§impl Debug for ElementPollerWithTimeout
impl Debug for ElementPollerWithTimeout
Source§impl Default for ElementPollerWithTimeout
impl Default for ElementPollerWithTimeout
Auto Trait Implementations§
impl Freeze for ElementPollerWithTimeout
impl RefUnwindSafe for ElementPollerWithTimeout
impl Send for ElementPollerWithTimeout
impl Sync for ElementPollerWithTimeout
impl Unpin for ElementPollerWithTimeout
impl UnwindSafe for ElementPollerWithTimeout
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