pub struct SetInputFilesBuilder { /* private fields */ }
Implementations§
Source§impl SetInputFilesBuilder
impl SetInputFilesBuilder
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 Freeze for SetInputFilesBuilder
impl RefUnwindSafe for SetInputFilesBuilder
impl Send for SetInputFilesBuilder
impl Sync for SetInputFilesBuilder
impl Unpin for SetInputFilesBuilder
impl UnwindSafe for SetInputFilesBuilder
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