pub struct SetBlockedUrLsParams {
pub urls: Vec<String>,
}Expand description
Blocks URLs from loading. setBlockedURLs
Fields§
§urls: Vec<String>URL patterns to block. Wildcards (‘*’) are allowed.
Implementations§
Source§impl SetBlockedUrLsParams
impl SetBlockedUrLsParams
pub fn builder() -> SetBlockedUrLsParamsBuilder
Source§impl SetBlockedUrLsParams
impl SetBlockedUrLsParams
pub const IDENTIFIER: &'static str = "Network.setBlockedURLs"
Trait Implementations§
Source§impl Clone for SetBlockedUrLsParams
impl Clone for SetBlockedUrLsParams
Source§fn clone(&self) -> SetBlockedUrLsParams
fn clone(&self) -> SetBlockedUrLsParams
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 Command for SetBlockedUrLsParams
impl Command for SetBlockedUrLsParams
Source§impl Debug for SetBlockedUrLsParams
impl Debug for SetBlockedUrLsParams
Source§impl<'de> Deserialize<'de> for SetBlockedUrLsParams
impl<'de> Deserialize<'de> for SetBlockedUrLsParams
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 SetBlockedUrLsParams
impl Method for SetBlockedUrLsParams
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 MethodType for SetBlockedUrLsParams
impl MethodType for SetBlockedUrLsParams
Source§impl PartialEq for SetBlockedUrLsParams
impl PartialEq for SetBlockedUrLsParams
Source§impl Serialize for SetBlockedUrLsParams
impl Serialize for SetBlockedUrLsParams
impl StructuralPartialEq for SetBlockedUrLsParams
Auto Trait Implementations§
impl Freeze for SetBlockedUrLsParams
impl RefUnwindSafe for SetBlockedUrLsParams
impl Send for SetBlockedUrLsParams
impl Sync for SetBlockedUrLsParams
impl Unpin for SetBlockedUrLsParams
impl UnwindSafe for SetBlockedUrLsParams
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