pub struct SetDownloadBehaviorParams {
pub behavior: String,
pub browserContextId: Option<BrowserContextID>,
pub downloadPath: Option<String>,
pub eventsEnabled: Option<bool>,
}Expand description
Set the behavior when downloading a file.
Fields§
§behavior: StringWhether to allow all or deny all download requests, or use default Chrome behavior if available (otherwise deny). |allowAndName| allows download and names files according to their download guids.
browserContextId: Option<BrowserContextID>BrowserContext to set download behavior. When omitted, default browser context is used.
downloadPath: Option<String>The default path to save downloaded files to. This is required if behavior is set to ‘allow’ or ‘allowAndName’.
eventsEnabled: Option<bool>Whether to emit download events (defaults to false).
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
Source§impl Default for SetDownloadBehaviorParams
impl Default for SetDownloadBehaviorParams
Source§fn default() -> SetDownloadBehaviorParams
fn default() -> SetDownloadBehaviorParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetDownloadBehaviorParams
impl<'de> Deserialize<'de> for SetDownloadBehaviorParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SetDownloadBehaviorParams
impl RefUnwindSafe for SetDownloadBehaviorParams
impl Send for SetDownloadBehaviorParams
impl Sync for SetDownloadBehaviorParams
impl Unpin for SetDownloadBehaviorParams
impl UnsafeUnpin 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