pub struct FillBuilder<'l, 'a> { /* private fields */ }Expand description
Builder for fill operations with configurable options.
Created via Locator::fill.
Implementations§
Source§impl<'l, 'a> FillBuilder<'l, 'a>
impl<'l, 'a> FillBuilder<'l, 'a>
Sourcepub fn no_wait_after(self, no_wait_after: bool) -> Self
pub fn no_wait_after(self, no_wait_after: bool) -> Self
Whether to skip waiting for navigation after the fill.
By default, the fill will wait for any triggered navigation to complete.
Set to true to return immediately after the text is filled.
Sourcepub async fn send(self) -> Result<(), LocatorError>
pub async fn send(self) -> Result<(), LocatorError>
Execute the fill operation.
Trait Implementations§
Source§impl<'l, 'a> Debug for FillBuilder<'l, 'a>
impl<'l, 'a> Debug for FillBuilder<'l, 'a>
Source§impl<'l> IntoFuture for FillBuilder<'l, '_>
impl<'l> IntoFuture for FillBuilder<'l, '_>
Source§type IntoFuture = Pin<Box<dyn Future<Output = <FillBuilder<'l, '_> as IntoFuture>::Output> + Send + 'l>>
type IntoFuture = Pin<Box<dyn Future<Output = <FillBuilder<'l, '_> as IntoFuture>::Output> + Send + 'l>>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl<'l, 'a> Freeze for FillBuilder<'l, 'a>
impl<'l, 'a> !RefUnwindSafe for FillBuilder<'l, 'a>
impl<'l, 'a> Send for FillBuilder<'l, 'a>
impl<'l, 'a> Sync for FillBuilder<'l, 'a>
impl<'l, 'a> Unpin for FillBuilder<'l, 'a>
impl<'l, 'a> !UnwindSafe for FillBuilder<'l, 'a>
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