Struct cdp::runtime::CallFunctionOnResponse
[−]
[src]
pub struct CallFunctionOnResponse<'a> {
pub result: RemoteObject<'a>,
pub exception_details: Option<ExceptionDetails<'a>>,
}Calls function with given declaration on the given object. Object group of the result is inherited from the target object.
Command Runtime.callFunctionOn
Domain Module: cdp::runtime
Command Struct: cdp::runtime::CallFunctionOnCommand
Response Struct: cdp::runtime::CallFunctionOnResponse
Fields
result: RemoteObject<'a>
Call result.
exception_details: Option<ExceptionDetails<'a>>
Exception details.
Trait Implementations
impl<'a> Clone for CallFunctionOnResponse<'a>[src]
fn clone(&self) -> CallFunctionOnResponse<'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 CallFunctionOnResponse<'a>[src]
impl<'a> PartialEq for CallFunctionOnResponse<'a>[src]
fn eq(&self, __arg_0: &CallFunctionOnResponse<'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: &CallFunctionOnResponse<'a>) -> bool[src]
This method tests for !=.
impl<'a> CdpCommand for CallFunctionOnResponse<'a>[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Runtime.callFunctionOn"