pub struct ExposeDevToolsProtocolParams {
pub target_id: TargetId,
pub binding_name: Option<String>,
pub inherit_permissions: Option<bool>,
}Expand description
Inject object to the target’s main frame that provides a communication channel with browser target.
Injected object will be available as window[bindingName].
The object has the following API:
binding.send(json)- a method to send messages over the remote debugging protocolbinding.onmessage = json => handleMessage(json)- a callback that will be called for the protocol notifications and command responses. exposeDevToolsProtocol
Fields§
§target_id: TargetId§binding_name: Option<String>Binding name, ‘cdp’ if not specified.
inherit_permissions: Option<bool>If true, inherits the current root session’s permissions (default: false).
Implementations§
Trait Implementations§
Source§impl Clone for ExposeDevToolsProtocolParams
impl Clone for ExposeDevToolsProtocolParams
Source§fn clone(&self) -> ExposeDevToolsProtocolParams
fn clone(&self) -> ExposeDevToolsProtocolParams
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 ExposeDevToolsProtocolParams
impl Debug for ExposeDevToolsProtocolParams
Source§impl<'de> Deserialize<'de> for ExposeDevToolsProtocolParams
impl<'de> Deserialize<'de> for ExposeDevToolsProtocolParams
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 PartialEq for ExposeDevToolsProtocolParams
impl PartialEq for ExposeDevToolsProtocolParams
Source§fn eq(&self, other: &ExposeDevToolsProtocolParams) -> bool
fn eq(&self, other: &ExposeDevToolsProtocolParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExposeDevToolsProtocolParams
Auto Trait Implementations§
impl Freeze for ExposeDevToolsProtocolParams
impl RefUnwindSafe for ExposeDevToolsProtocolParams
impl Send for ExposeDevToolsProtocolParams
impl Sync for ExposeDevToolsProtocolParams
impl Unpin for ExposeDevToolsProtocolParams
impl UnsafeUnpin for ExposeDevToolsProtocolParams
impl UnwindSafe for ExposeDevToolsProtocolParams
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