Struct percy_vdom::CreatedNode[][src]

pub struct CreatedNode<T> {
    pub node: T,
    pub closures: HashMap<u32, Vec<Rc<dyn AsRef<JsValue> + 'static>, Global>, RandomState>,
}
Expand description

A node along with all of the closures that were created for that node’s events and all of it’s child node’s events.

Fields

node: T

A Node or Element that was created from a VirtualNode

closures: HashMap<u32, Vec<Rc<dyn AsRef<JsValue> + 'static>, Global>, RandomState>

A map of a node’s unique identifier along with all of the Closures for that node.

The DomUpdater uses this to look up nodes and see if they’re still in the page. If not the reference that we maintain to their closure will be dropped, thus freeing the Closure’s memory.

Implementations

Trait Implementations

The resulting type after dereferencing.

Dereferences the value.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.