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§
- event
- test_
utils - A collection of functions that are useful for unit testing your html! views.
Structs§
- Iterable
Nodes - Used by the html! macro for all braced child nodes so that we can use any type
that implements Into
- Special
Attributes - A specially supported attributes.
- VElement
- VText
- Represents a text node
Enums§
- Attribute
Value - The value associated with an element’s attribute.
- Virtual
Node - When building your views you’ll typically use the
html!
macro to generateVirtualNode
’s.
Traits§
- View
- A trait with common functionality for rendering front-end views.