[−][src]Struct yew_stdweb::virtual_dom::VTag
A type for a virtual Element representation.
Fields
reference: Option<Element>A reference to the Element.
listeners: Vec<Rc<dyn Listener>>List of attached listeners.
attributes: HashMap<String, String>List of attributes.
children: VListList of children nodes
classes: ClassesList of attached classes.
value: Option<String>Contains a value of an InputElement.
kind: Option<String>Contains
kind
value of an InputElement.
checked: boolRepresents 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: NodeRefA node reference used for DOM access in Component lifecycle methods
Methods
impl VTag[src]
pub fn new<S: Into<Cow<'static, str>>>(tag: S) -> Self[src]
Creates a new VTag instance with tag name (cannot be changed later in DOM).
pub fn tag(&self) -> &str[src]
Returns tag of an Element. In HTML tags are always uppercase.
pub fn add_child(&mut self, child: VNode)[src]
Add VNode child.
pub fn add_children(&mut self, children: Vec<VNode>)[src]
Add multiple VNode children.
pub fn add_class(&mut self, class: &str)[src]
Adds a single class to this virtual node. Actually it will set by Element.setAttribute call later.
pub fn add_classes(&mut self, classes: Vec<&str>)[src]
Adds multiple classes to this virtual node. Actually it will set by Element.setAttribute call later.
pub fn set_classes(&mut self, classes: impl Into<Classes>)[src]
Add classes to this virtual node. Actually it will set by Element.setAttribute call later.
pub fn set_value<T: ToString>(&mut self, value: &T)[src]
Sets value for an
InputElement.
pub fn set_kind<T: ToString>(&mut self, value: &T)[src]
Sets kind property of an
InputElement.
Same as set type attribute.
pub fn set_checked(&mut self, value: bool)[src]
Sets checked property of an
InputElement.
(Not a value of node's attribute).
pub fn add_attribute<T: ToString>(&mut self, name: &str, value: &T)[src]
Adds attribute to a virtual node. Not every attribute works when
it set as attribute. We use workarounds for:
class, type/kind, value and checked.
pub fn add_attributes(&mut self, attrs: Vec<(String, String)>)[src]
Adds attributes to a virtual node. Not every attribute works when
it set as attribute. We use workarounds for:
class, type/kind, value and checked.
pub fn add_listener(&mut self, listener: Rc<dyn Listener>)[src]
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.
pub fn add_listeners(&mut self, listeners: Vec<Rc<dyn Listener>>)[src]
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
impl Clone for VTag[src]
fn clone(&self) -> Self[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for VTag[src]
impl From<VTag> for VNode[src]
impl PartialEq<VTag> for VTag[src]
impl<'a, T> Transformer<&'a T, T> for VTag where
T: Clone, [src]
T: Clone,
impl<T> Transformer<T, T> for VTag[src]
Auto Trait Implementations
impl !RefUnwindSafe for VTag
impl !Send for VTag
impl !Sync for VTag
impl Unpin for VTag
impl !UnwindSafe for VTag
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Any for T where
T: Any, [src]
T: Any,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> CloneAny for T where
T: Clone + Any, [src]
T: Clone + Any,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
U: TryFrom<T>,