[][src]Enum seed::virtual_dom::node::Node

pub enum Node<Ms: 'static> {
    Element(El<Ms>),
    Text(Text),
    Empty,
}

A component in our virtual DOM. MDN reference web_sys reference

Variants

Element(El<Ms>)
Text(Text)
Empty

Methods

impl<Ms> Node<Ms>[src]

pub fn from_markdown(markdown: &str) -> Vec<Node<Ms>>[src]

See El::from_markdown

pub fn from_html(html: &str) -> Vec<Node<Ms>>[src]

See El::from_html

pub fn add_child(&mut self, node: Node<Ms>) -> &mut Self[src]

See El::add_child

pub fn add_attr(
    &mut self,
    key: impl Into<Cow<'static, str>>,
    val: impl Into<AtValue>
) -> &mut Self
[src]

See El::add_attr

pub fn add_class(&mut self, name: impl Into<Cow<'static, str>>) -> &mut Self[src]

See El::add_class

pub fn add_style(
    &mut self,
    key: impl Into<St>,
    val: impl Into<CSSValue>
) -> &mut Self
[src]

See El::add_style

pub fn add_listener(&mut self, event_handler: EventHandler<Ms>) -> &mut Self[src]

See El::add_event_handler

pub fn add_text(&mut self, text: impl Into<Cow<'static, str>>) -> &mut Self[src]

See El::add_text

pub fn replace_text(&mut self, text: impl Into<Cow<'static, str>>) -> &mut Self[src]

See El::replace_text

pub fn get_text(&self) -> String[src]

See El::get_text

impl<Ms> Node<Ms>[src]

pub fn new_text(text: impl Into<Cow<'static, str>>) -> Self[src]

pub fn is_text(&self) -> bool[src]

pub fn is_el(&self) -> bool[src]

pub fn is_empty(&self) -> bool[src]

pub fn text(&self) -> Option<&Text>[src]

pub fn el(&self) -> Option<&El<Ms>>[src]

impl<Ms> Node<Ms>[src]

Trait Implementations

impl<Ms> Clone for Node<Ms>[src]

impl<Ms: Debug + 'static> Debug for Node<Ms>[src]

impl<'_, Ms> From<&'_ Element> for Node<Ms>[src]

impl<Ms> IntoNodes<Ms> for Node<Ms>[src]

impl<Ms: 'static, OtherMs: 'static> MessageMapper<Ms, OtherMs> for Node<Ms>[src]

type SelfWithOtherMs = Node<OtherMs>

fn map_msg(
    self,
    f: impl FnOnce(Ms) -> OtherMs + 'static + Clone
) -> Node<OtherMs>
[src]

See note on impl for El

impl<Ms> UpdateEl<El<Ms>> for Node<Ms>[src]

impl<Ms: 'static> View<Ms> for Node<Ms>[src]

Auto Trait Implementations

impl<Ms> !RefUnwindSafe for Node<Ms>

impl<Ms> !Send for Node<Ms>

impl<Ms> !Sync for Node<Ms>

impl<Ms> Unpin for Node<Ms>

impl<Ms> !UnwindSafe for Node<Ms>

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.