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: Vec<CssComputedStyleProperty<'a>>
Computed style for the specified DOM node.
Trait Implementations
impl<'a> Clone for GetComputedStyleForNodeResponse<'a>[src]
fn clone(&self) -> GetComputedStyleForNodeResponse<'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 GetComputedStyleForNodeResponse<'a>[src]
impl<'a> PartialEq for GetComputedStyleForNodeResponse<'a>[src]
fn eq(&self, __arg_0: &GetComputedStyleForNodeResponse<'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: &GetComputedStyleForNodeResponse<'a>) -> bool[src]
This method tests for !=.
impl<'a> CdpCommand for GetComputedStyleForNodeResponse<'a>[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "CSS.getComputedStyleForNode"