pub struct SetInputFilesBuilder<'a> { /* private fields */ }
Implementations§
Source§impl<'a> SetInputFilesBuilder<'a>
impl<'a> SetInputFilesBuilder<'a>
pub async fn set_input_files(self) -> Result<(), Arc<Error>>
pub fn add_file(self, x: File) -> Self
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_no_wait_after(self) -> Self
pub fn clear_timeout(self) -> Self
pub fn clear_files(self) -> Self
Auto Trait Implementations§
impl<'a> Freeze for SetInputFilesBuilder<'a>
impl<'a> RefUnwindSafe for SetInputFilesBuilder<'a>
impl<'a> Send for SetInputFilesBuilder<'a>
impl<'a> Sync for SetInputFilesBuilder<'a>
impl<'a> Unpin for SetInputFilesBuilder<'a>
impl<'a> UnwindSafe for SetInputFilesBuilder<'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