Struct yew::virtual_dom::VTag[][src]

pub struct VTag {
    pub node_ref: NodeRef,
    pub attributes: Attributes,
    pub key: Option<Key>,
    // some fields omitted
}
Expand description

A type for a virtual Element representation.

Fields

node_ref: NodeRef

A node reference used for DOM access in Component lifecycle methods

attributes: Attributes

List of attributes.

key: Option<Key>

Implementations

Creates a new VTag instance with tag name (cannot be changed later in DOM).

Returns tag of an Element. In HTML tags are always uppercase.

Add VNode child.

Add multiple VNode children.

Returns a reference to the children of this VTag

Returns a mutable reference to the children of this VTag, if the node can have

Returns the value of an InputElement or TextArea

Sets value for an InputElement or TextArea

Returns checked property of an InputElement. (Not a value of node’s attribute).

Sets checked property of an InputElement. (Not a value of node’s attribute).

Returns reference to the Element associated with this VTag, if this VTag has already been mounted in the DOM

Adds a key-value pair to attributes

Not every attribute works when it set as an attribute. We use workarounds for: value and checked.

Sets attributes to a virtual node.

Not every attribute works when it set as an attribute. We use workarounds for: value and checked.

Set event listeners on the VTag’s Element

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Performs the conversion.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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 resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

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.