yew_stdweb::virtual_dom

Struct VTag

Source
pub struct VTag {
    pub reference: Option<Element>,
    pub listeners: Vec<Rc<dyn Listener>>,
    pub attributes: Attributes,
    pub children: VList,
    pub value: Option<AttrValue>,
    pub kind: Option<AttrValue>,
    pub checked: bool,
    pub node_ref: NodeRef,
    pub key: Option<Key>,
    /* private fields */
}
Expand description

A type for a virtual Element representation.

Fields§

§reference: Option<Element>

A reference to the DOM Element.

§listeners: Vec<Rc<dyn Listener>>

List of attached listeners.

§attributes: Attributes

List of attributes.

§children: VList

List of children nodes

§value: Option<AttrValue>

Contains a value of an InputElement.

§kind: Option<AttrValue>

Contains kind value of an InputElement.

§checked: bool

Represents checked attribute of input. It exists to override standard behavior of checked attribute, because in original HTML it sets defaultChecked value of InputElement, but for reactive frameworks it’s more useful to control checked value of an InputElement.

§node_ref: NodeRef

A node reference used for DOM access in Component lifecycle methods

§key: Option<Key>

Implementations§

Source§

impl VTag

Source

pub fn new(tag: impl Into<Cow<'static, str>>) -> Self

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

Source

pub fn tag(&self) -> &str

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

Source

pub fn add_child(&mut self, child: VNode)

Add VNode child.

Source

pub fn add_children(&mut self, children: impl IntoIterator<Item = VNode>)

Add multiple VNode children.

Source

pub fn set_value(&mut self, value: impl IntoOptPropValue<AttrValue>)

Sets value for an InputElement.

Source

pub fn set_kind(&mut self, value: impl IntoOptPropValue<AttrValue>)

Sets kind property of an InputElement. Same as set type attribute.

Source

pub fn set_checked(&mut self, value: bool)

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

Source

pub fn add_attribute(&mut self, key: &'static str, value: impl Into<AttrValue>)

Adds a key-value pair to attributes

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

Source

pub fn set_attributes(&mut self, attrs: impl Into<Attributes>)

Sets attributes to a virtual node.

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

Source

pub fn add_listener(&mut self, listener: Rc<dyn Listener>)

Adds new listener to the node. It’s boxed because we want to keep it in a single list. Later Listener::attach will attach an actual listener to a DOM node.

Source

pub fn add_listeners(&mut self, listeners: Vec<Rc<dyn Listener>>)

Adds new listeners to the node. They are boxed because we want to keep them in a single list. Later Listener::attach will attach an actual listener to a DOM node.

Trait Implementations§

Source§

impl Clone for VTag

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for VTag

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<VTag> for VNode

Source§

fn from(vtag: VTag) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for VTag

Source§

fn eq(&self, other: &VTag) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl Freeze for VTag

§

impl !RefUnwindSafe for VTag

§

impl !Send for VTag

§

impl !Sync for VTag

§

impl Unpin for VTag

§

impl !UnwindSafe for VTag

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, V> IntoOptPropValue<V> for T
where T: IntoPropValue<Option<V>>,

Source§

fn into_opt_prop_value(self) -> Option<V>

Convert self to an optional value of a Properties struct.
Source§

impl<T> IntoPropValue<Option<T>> for T

Source§

fn into_prop_value(self) -> Option<T>

Convert self to a value of a Properties struct.
Source§

impl<T> IntoPropValue<T> for T

Source§

fn into_prop_value(self) -> T

Convert self to a value of a Properties struct.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> Any for T
where T: Any,

Source§

impl<T> CloneAny for T
where T: Any + Clone,