[][src]Struct typed_html::dom::TextNode

pub struct TextNode<T: OutputType + Send>(_, _);

An HTML text node.

Methods

impl<T: OutputType + Send> TextNode<T>[src]

pub fn new<S: Into<String>>(s: S) -> Self[src]

Construct a text node.

The preferred way to construct a text node is with the text!() macro.

Trait Implementations

impl<T: OutputType + Send> Display for TextNode<T>[src]

impl<T: OutputType + Send> FlowContent<T> for TextNode<T>[src]

impl<T: OutputType + Send> IntoIterator for TextNode<T>[src]

type Item = TextNode<T>

The type of the elements being iterated over.

type IntoIter = IntoIter<TextNode<T>>

Which kind of iterator are we turning this into?

impl<T: OutputType + Send> Node<T> for TextNode<T>[src]

impl<T: OutputType + Send> PhrasingContent<T> for TextNode<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for TextNode<T> where
    T: RefUnwindSafe

impl<T> Send for TextNode<T>

impl<T> Sync for TextNode<T> where
    T: Sync

impl<T> Unpin for TextNode<T> where
    T: Unpin

impl<T> UnwindSafe for TextNode<T> where
    T: UnwindSafe

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<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> 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<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

The type returned in the event of a conversion error.