pub struct SetDownloadBehaviorParams {
pub behavior: DownloadBehavior,
pub download_path: Option<String>,
}Expand description
Parameters for Page.setDownloadBehavior.
Fields§
§behavior: DownloadBehaviorWhether to allow all or deny all download requests, or use default Chrome behavior if available (otherwise deny).
download_path: Option<String>The default path to save downloaded files to. This is required if behavior is set to ‘allow’.
Trait Implementations§
Source§impl Clone for SetDownloadBehaviorParams
impl Clone for SetDownloadBehaviorParams
Source§fn clone(&self) -> SetDownloadBehaviorParams
fn clone(&self) -> SetDownloadBehaviorParams
Returns a duplicate 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 SetDownloadBehaviorParams
impl Debug for SetDownloadBehaviorParams
Auto Trait Implementations§
impl Freeze for SetDownloadBehaviorParams
impl RefUnwindSafe for SetDownloadBehaviorParams
impl Send for SetDownloadBehaviorParams
impl Sync for SetDownloadBehaviorParams
impl Unpin for SetDownloadBehaviorParams
impl UnwindSafe for SetDownloadBehaviorParams
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