pub struct SetDownloadBehaviorParams {
pub behavior: SetDownloadBehaviorBehavior,
pub browser_context_id: Option<BrowserContextId>,
pub download_path: Option<String>,
pub events_enabled: Option<bool>,
}Expand description
Set the behavior when downloading a file. setDownloadBehavior
Fields§
§behavior: SetDownloadBehaviorBehaviorWhether 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 dowmload guids.
browser_context_id: Option<BrowserContextId>BrowserContext to set download behavior. When omitted, default browser context is used.
download_path: Option<String>The default path to save downloaded files to. This is required if behavior is set to ‘allow’ or ‘allowAndName’.
events_enabled: Option<bool>Whether to emit download events (defaults to false).
Implementations§
source§impl SetDownloadBehaviorParams
impl SetDownloadBehaviorParams
pub fn new(behavior: impl Into<SetDownloadBehaviorBehavior>) -> Self
source§impl SetDownloadBehaviorParams
impl SetDownloadBehaviorParams
pub const IDENTIFIER: &'static str = "Browser.setDownloadBehavior"
Trait Implementations§
source§impl Clone for SetDownloadBehaviorParams
impl Clone for SetDownloadBehaviorParams
source§fn clone(&self) -> SetDownloadBehaviorParams
fn clone(&self) -> SetDownloadBehaviorParams
Returns a copy 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 Command for SetDownloadBehaviorParams
impl Command for SetDownloadBehaviorParams
§type Response = SetDownloadBehaviorReturns
type Response = SetDownloadBehaviorReturns
The type of the response this request triggers on the chromium server
source§impl Debug for SetDownloadBehaviorParams
impl Debug for SetDownloadBehaviorParams
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
source§impl Method for SetDownloadBehaviorParams
impl Method for SetDownloadBehaviorParams
source§fn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNodesource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMsource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodesource§impl PartialEq for SetDownloadBehaviorParams
impl PartialEq for SetDownloadBehaviorParams
source§fn eq(&self, other: &SetDownloadBehaviorParams) -> bool
fn eq(&self, other: &SetDownloadBehaviorParams) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SetDownloadBehaviorParams
Auto Trait Implementations§
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