Struct cdp::dom_debugger::GetEventListenersCommand  
                   
                       [−]
                   
               [src]
pub struct GetEventListenersCommand<'a> {
    pub object_id: RemoteObjectId<'a>,
    pub depth: Option<i32>,
    pub pierce: Option<bool>,
}[Experimental] Returns event listeners of the given object.
Command DOMDebugger.getEventListeners
Domain Module: cdp::dom_debugger
Command Struct: cdp::dom_debugger::GetEventListenersCommand
Response Struct: cdp::dom_debugger::GetEventListenersResponse
Fields
object_id: RemoteObjectId<'a>
                           Identifier of the object to return listeners for.
depth: Option<i32>
                           [Experimental] The maximum depth at which Node children should be retrieved, defaults to 1. Use -1 for the entire subtree or provide an integer larger than 0.
pierce: Option<bool>
                           [Experimental] Whether or not iframes and shadow roots should be traversed when returning the subtree (default is false). Reports listeners for all contexts if pierce is enabled.
Trait Implementations
impl<'a> Clone for GetEventListenersCommand<'a>[src]
fn clone(&self) -> GetEventListenersCommand<'a>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<'a> Debug for GetEventListenersCommand<'a>[src]
impl<'a> PartialEq for GetEventListenersCommand<'a>[src]
fn eq(&self, __arg_0: &GetEventListenersCommand<'a>) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &GetEventListenersCommand<'a>) -> bool[src]
This method tests for !=.
impl<'a> CdpCommand for GetEventListenersCommand<'a>[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "DOMDebugger.getEventListeners"
impl<'a> SerializeCdpCommand for GetEventListenersCommand<'a>[src]
fn command_name(&self) -> &str[src]
fn serialize_command_params<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
    S: Serializer, [src]
S: Serializer,
impl<'de, 'a> DeserializeCdpCommand<'de> for GetEventListenersCommand<'a>[src]
fn deserialize_command<D>(
    name: &str, 
    params: D
) -> Result<Result<Self, D::Error>, D> where
    D: Deserializer<'de>, [src]
name: &str,
params: D
) -> Result<Result<Self, D::Error>, D> where
D: Deserializer<'de>,