[][src]Struct yew::virtual_dom::vtext::VText

pub struct VText<COMP: Component> {
    pub text: String,
    pub reference: Option<TextNode>,
    // some fields omitted
}

A type for a virtual TextNode represenation.

Fields

text: String

Contains a text of the node.

reference: Option<TextNode>

A reference to the TextNode.

Methods

impl<COMP: Component> VText<COMP>[src]

pub fn new(text: String) -> Self[src]

Creates new virtual text node with a content.

Trait Implementations

impl<COMP: Component> VDiff for VText<COMP>[src]

type Component = COMP

The component which this instance put into.

fn detach(&mut self, parent: &Element) -> Option<Node>[src]

Remove VTag from parent.

fn apply(
    &mut self,
    parent: &Element,
    _: Option<&Node>,
    opposite: Option<VNode<Self::Component>>,
    _: &Scope<Self::Component>
) -> Option<Node>
[src]

Renders virtual node over existent TextNode, but only if value of text had changed. Parameter precursor is necesssary for VTag and VList which has children and renders them.

impl<COMP: Component> From<VText<COMP>> for VNode<COMP>[src]

impl<COMP: Component> PartialEq<VText<COMP>> for VText<COMP>[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl<COMP: Component> Debug for VText<COMP>[src]

Auto Trait Implementations

impl<COMP> Sync for VText<COMP> where
    COMP: Sync

impl<COMP> Send for VText<COMP> where
    COMP: Send

impl<COMP> Unpin for VText<COMP> where
    COMP: Unpin

impl<COMP> RefUnwindSafe for VText<COMP> where
    COMP: RefUnwindSafe

impl<COMP> UnwindSafe for VText<COMP> where
    COMP: UnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.