Skip to main content

IntoElementContent

Trait IntoElementContent 

Source
pub trait IntoElementContent {
    // Required method
    fn append_to(self, children: &mut Vec<Element>);
}

Required Methods§

Source

fn append_to(self, children: &mut Vec<Element>)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl IntoElementContent for &'static str

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl IntoElementContent for String

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl IntoElementContent for f32

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl IntoElementContent for f64

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl IntoElementContent for i8

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl IntoElementContent for i16

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl IntoElementContent for i32

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl IntoElementContent for i64

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl IntoElementContent for i128

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl IntoElementContent for isize

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl IntoElementContent for u8

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl IntoElementContent for u16

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl IntoElementContent for u32

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl IntoElementContent for u64

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl IntoElementContent for u128

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl IntoElementContent for usize

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl<A, B, C, D, E, F, G, H> IntoElementContent for (A, B, C, D, E, F, G, H)

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl<A, B, C, D, E, F, G> IntoElementContent for (A, B, C, D, E, F, G)

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl<A, B, C, D, E, F> IntoElementContent for (A, B, C, D, E, F)

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl<A, B, C, D, E> IntoElementContent for (A, B, C, D, E)

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl<A, B, C, D> IntoElementContent for (A, B, C, D)

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl<A, B, C> IntoElementContent for (A, B, C)

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl<A, B> IntoElementContent for (A, B)

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl<A> IntoElementContent for (A,)

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl<T, const N: usize> IntoElementContent for [T; N]

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl<T> IntoElementContent for Option<T>

Source§

fn append_to(self, children: &mut Vec<Element>)

Source§

impl<T> IntoElementContent for Vec<T>

Source§

fn append_to(self, children: &mut Vec<Element>)

Implementors§