Struct cdp::dom::SetChildNodesEvent [] [src]

pub struct SetChildNodesEvent<'a> {
    pub parent_id: NodeId,
    pub nodes: Vec<Node<'a>>,
}

Fired when backend wants to provide client with the missing DOM structure. This happens upon most of the calls requesting node ids.

Event DOM.setChildNodes

Domain Module: cdp::dom
Event Struct: cdp::dom::SetChildNodesEvent

Fields

Parent node id to populate with children.

Child nodes array.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

EVENT_NAME: &'static str = "DOM.setChildNodes"

impl<'a> SerializeCdpEvent for SetChildNodesEvent<'a>
[src]

[src]

[src]

impl<'de, 'a> DeserializeCdpEvent<'de> for SetChildNodesEvent<'a>
[src]

[src]