pub enum PageLoadStrategy {
Normal,
Eager,
None,
}
Variants§
Normal
Wait for full page loading (the default).
Eager
Wait for the DOMContentLoaded event (html content downloaded and parsed only).
None
Return immediately after the initial page content is fully received (html content downloaded).
Trait Implementations§
Source§impl Clone for PageLoadStrategy
impl Clone for PageLoadStrategy
Source§fn clone(&self) -> PageLoadStrategy
fn clone(&self) -> PageLoadStrategy
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 PageLoadStrategy
impl Debug for PageLoadStrategy
Auto Trait Implementations§
impl Freeze for PageLoadStrategy
impl RefUnwindSafe for PageLoadStrategy
impl Send for PageLoadStrategy
impl Sync for PageLoadStrategy
impl Unpin for PageLoadStrategy
impl UnwindSafe for PageLoadStrategy
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