[][src]Struct virtual_dom_rs::IterableNodes

pub struct IterableNodes(_);

Used by the html! macro for all braced child nodes so that we can use any type that implements Into

html! {

{ nodes }
}

nodes can be a String .. VirtualNode .. Vec ... etc

Trait Implementations

impl IntoIterator for IterableNodes[src]

type Item = VirtualNode

The type of the elements being iterated over.

type IntoIter = IntoIter<VirtualNode>

Which kind of iterator are we turning this into?

impl From<Vec<VirtualNode>> for IterableNodes[src]

impl<'_> From<&'_ str> for IterableNodes[src]

impl From<VirtualNode> for IterableNodes[src]

impl From<String> for IterableNodes[src]

Auto Trait Implementations

Blanket Implementations

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]