Struct cdp::runtime::GetPropertiesResponse
[−]
[src]
pub struct GetPropertiesResponse<'a> { pub result: Vec<PropertyDescriptor<'a>>, pub internal_properties: Option<Vec<InternalPropertyDescriptor<'a>>>, pub exception_details: Option<ExceptionDetails<'a>>, }
Returns properties of a given object. Object group of the result is inherited from the target object.
Command Runtime.getProperties
Domain Module: cdp::runtime
Command Struct: cdp::runtime::GetPropertiesCommand
Response Struct: cdp::runtime::GetPropertiesResponse
Fields
result: Vec<PropertyDescriptor<'a>>
Object properties.
internal_properties: Option<Vec<InternalPropertyDescriptor<'a>>>
Internal object properties (only of the element itself).
exception_details: Option<ExceptionDetails<'a>>
Exception details.
Trait Implementations
impl<'a> Clone for GetPropertiesResponse<'a>
[src]
fn clone(&self) -> GetPropertiesResponse<'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 GetPropertiesResponse<'a>
[src]
impl<'a> PartialEq for GetPropertiesResponse<'a>
[src]
fn eq(&self, __arg_0: &GetPropertiesResponse<'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: &GetPropertiesResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for GetPropertiesResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Runtime.getProperties"