pub struct ExposeDevToolsProtocolReturn {}Available on crate features
Target and experimental only.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 follwing 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.
Implementations§
Trait Implementations§
Source§impl Clone for ExposeDevToolsProtocolReturn
impl Clone for ExposeDevToolsProtocolReturn
Source§fn clone(&self) -> ExposeDevToolsProtocolReturn
fn clone(&self) -> ExposeDevToolsProtocolReturn
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 ExposeDevToolsProtocolReturn
impl Debug for ExposeDevToolsProtocolReturn
Source§impl Default for ExposeDevToolsProtocolReturn
impl Default for ExposeDevToolsProtocolReturn
Source§fn default() -> ExposeDevToolsProtocolReturn
fn default() -> ExposeDevToolsProtocolReturn
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExposeDevToolsProtocolReturn
impl<'de> Deserialize<'de> for ExposeDevToolsProtocolReturn
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 ExposeDevToolsProtocolReturn
impl RefUnwindSafe for ExposeDevToolsProtocolReturn
impl Send for ExposeDevToolsProtocolReturn
impl Sync for ExposeDevToolsProtocolReturn
impl Unpin for ExposeDevToolsProtocolReturn
impl UnwindSafe for ExposeDevToolsProtocolReturn
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