pub struct TypeBuilder<'a, 'b> { /* private fields */ }Implementations§
Source§impl<'a, 'b> TypeBuilder<'a, 'b>
impl<'a, 'b> TypeBuilder<'a, 'b>
pub async fn type(self) -> Result<(), Arc<Error>>
Sourcepub fn delay(self, x: f64) -> Self
pub fn delay(self, x: f64) -> Self
Time to wait between keydown and keyup in milliseconds. Defaults to 0.
Sourcepub fn no_wait_after(self, x: bool) -> Self
pub fn no_wait_after(self, x: bool) -> Self
Actions that initiate navigations are waiting for these navigations to happen and for pages to start loading. You can
opt out of waiting via setting this flag. You would only need this option in the exceptional cases such as navigating to
inaccessible pages. Defaults to false.
pub fn timeout(self, x: f64) -> Self
pub fn clear_delay(self) -> Self
pub fn clear_no_wait_after(self) -> Self
pub fn clear_timeout(self) -> Self
Auto Trait Implementations§
impl<'a, 'b> Freeze for TypeBuilder<'a, 'b>
impl<'a, 'b> RefUnwindSafe for TypeBuilder<'a, 'b>
impl<'a, 'b> Send for TypeBuilder<'a, 'b>
impl<'a, 'b> Sync for TypeBuilder<'a, 'b>
impl<'a, 'b> Unpin for TypeBuilder<'a, 'b>
impl<'a, 'b> UnwindSafe for TypeBuilder<'a, 'b>
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