pub struct ExposeDevToolsProtocolParams {
pub targetId: TargetID,
pub bindingName: Option<String>,
pub inheritPermissions: 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 protocol
- ‘binding.onmessage = json => handleMessage(json)’ - a callback that will be called for the protocol notifications and command responses.
Fields§
§targetId: TargetID§bindingName: Option<String>Binding name, ‘cdp’ if not specified.
inheritPermissions: Option<bool>If true, inherits the current root session’s permissions (default: false).
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 Default for ExposeDevToolsProtocolParams
impl Default for ExposeDevToolsProtocolParams
Source§fn default() -> ExposeDevToolsProtocolParams
fn default() -> ExposeDevToolsProtocolParams
Returns the “default value” for a type. Read more
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
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