[][src]Struct virtual_dom_rs::CreatedNode

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

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>>, 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

impl<T> CreatedNode<T>[src]

pub fn without_closures<N>(node: N) -> CreatedNode<T> where
    N: Into<T>, 
[src]

Trait Implementations

impl<T> Deref for CreatedNode<T>[src]

type Target = T

The resulting type after dereferencing.

impl From<CreatedNode<Element>> for CreatedNode<Node>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for CreatedNode<T>

impl<T> !Send for CreatedNode<T>

impl<T> !Sync for CreatedNode<T>

impl<T> Unpin for CreatedNode<T> where
    T: Unpin

impl<T> !UnwindSafe for CreatedNode<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.