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

Object properties.

Internal object properties (only of the element itself).

Exception details.

Trait Implementations

impl<'a> Clone for GetPropertiesResponse<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for GetPropertiesResponse<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for GetPropertiesResponse<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'a> CdpCommand for GetPropertiesResponse<'a>
[src]

COMMAND_NAME: &'static str = "Runtime.getProperties"

impl<'a, 'b> HasCdpCommand<'a> for GetPropertiesResponse<'b>
[src]