Struct cdp::runtime::GetPropertiesCommand [] [src]

pub struct GetPropertiesCommand<'a> {
    pub object_id: RemoteObjectId<'a>,
    pub own_properties: Option<bool>,
    pub accessor_properties_only: Option<bool>,
    pub generate_preview: Option<bool>,
}

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

Identifier of the object to return properties for.

If true, returns properties belonging only to the element itself, not to its prototype chain.

[Experimental] If true, returns accessor properties (with getter/setter) only; internal properties are not returned either.

[Experimental] Whether preview should be generated for the results.

Trait Implementations

impl<'a> Clone for GetPropertiesCommand<'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 GetPropertiesCommand<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for GetPropertiesCommand<'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 GetPropertiesCommand<'a>
[src]

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

impl<'a> SerializeCdpCommand for GetPropertiesCommand<'a>
[src]

[src]

[src]

impl<'de, 'a> DeserializeCdpCommand<'de> for GetPropertiesCommand<'a>
[src]

[src]

impl<'b, 'a> HasCdpResponse<'b> for GetPropertiesCommand<'a>
[src]