Struct cdp::css::GetComputedStyleForNodeResponse [] [src]

pub struct GetComputedStyleForNodeResponse<'a> {
    pub computed_style: Vec<CssComputedStyleProperty<'a>>,
}

[Experimental] Returns the computed style for a DOM node identified by nodeId.

Command CSS.getComputedStyleForNode

Domain Module: cdp::css
Command Struct: cdp::css::GetComputedStyleForNodeCommand
Response Struct: cdp::css::GetComputedStyleForNodeResponse

Fields

Computed style for the specified DOM node.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

COMMAND_NAME: &'static str = "CSS.getComputedStyleForNode"

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