[][src]Struct typed_html::dom::UnsafeTextNode

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

An unsafe HTML text node. This is like TextNode, but no escaping will be performed when this node is displayed.

Methods

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

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

Construct a unsafe text node.

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

Trait Implementations

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

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

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

type Item = UnsafeTextNode<T>

The type of the elements being iterated over.

type IntoIter = IntoIter<UnsafeTextNode<T>>

Which kind of iterator are we turning this into?

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

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

Auto Trait Implementations

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

impl<T> Send for UnsafeTextNode<T>

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

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

impl<T> UnwindSafe for UnsafeTextNode<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.