Crate virtual_node[][src]

Expand description

The virtual_node module exposes the VirtualNode struct and methods that power our virtual dom.

Re-exports

pub use self::event::EventAttribFn;

Modules

A collection of functions that are useful for unit testing your html! views.

Structs

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.

Used by the html! macro for all braced child nodes so that we can use any type that implements Into

Represents a text node

Enums

The value associated with an element’s attribute.

When building your views you’ll typically use the html! macro to generate VirtualNode’s.

Traits

A trait with common functionality for rendering front-end views.