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

pub enum Node<Ms> {
    Element(El<Ms>),
    Text(Text),
    Empty,
    NoChange,
}

A component in our virtual DOM. MDN reference web_sys reference

Variants

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

Implementations

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

Notable traits for &'_ mut F

impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;
[src]

See El::add_child

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

Notable traits for &'_ mut F

impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;
[src]

See El::add_attr

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

Notable traits for &'_ mut F

impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;
[src]

See El::add_class

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

Notable traits for &'_ mut F

impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;
[src]

See El::add_style

pub fn add_event_handler(
    &mut self,
    event_handler: EventHandler<Ms>
) -> &mut Self

Notable traits for &'_ mut F

impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;
[src]

See El::add_event_handler

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

Notable traits for &'_ mut F

impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;
[src]

See El::add_text

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

Notable traits for &'_ mut F

impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;
[src]

See El::replace_text

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

See El::get_text

pub fn el_key(&self) -> Option<&ElKey>[src]

Retrive key attached to the El

impl<Ms> Node<Ms>[src]

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

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

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

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

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

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

impl<Ms> Node<Ms>[src]

Trait Implementations

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

impl<Ms: Debug> Debug for Node<Ms>[src]

impl<Ms> Display 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<Ms> for Node<Ms>[src]

impl<Ms> 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> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,