Render

Trait Render 

Source
pub trait Render {
    // Provided methods
    fn markup(&self) -> Escaped<String> { ... }
    fn markup_to_string(&self, buf: &mut String) { ... }
}

Provided Methods§

Source

fn markup(&self) -> Escaped<String>

Source

fn markup_to_string(&self, buf: &mut String)

Implementations on Foreign Types§

Source§

impl Render for i8

Source§

fn markup_to_string(&self, w: &mut String)

Source§

impl Render for i16

Source§

fn markup_to_string(&self, w: &mut String)

Source§

impl Render for i32

Source§

fn markup_to_string(&self, w: &mut String)

Source§

impl Render for i64

Source§

fn markup_to_string(&self, w: &mut String)

Source§

impl Render for i128

Source§

fn markup_to_string(&self, w: &mut String)

Source§

impl Render for isize

Source§

fn markup_to_string(&self, w: &mut String)

Source§

impl Render for str

Source§

fn markup_to_string(&self, buf: &mut String)

Source§

impl Render for u8

Source§

fn markup_to_string(&self, w: &mut String)

Source§

impl Render for u16

Source§

fn markup_to_string(&self, w: &mut String)

Source§

impl Render for u32

Source§

fn markup_to_string(&self, w: &mut String)

Source§

impl Render for u64

Source§

fn markup_to_string(&self, w: &mut String)

Source§

impl Render for u128

Source§

fn markup_to_string(&self, w: &mut String)

Source§

impl Render for usize

Source§

fn markup_to_string(&self, w: &mut String)

Source§

impl Render for String

Source§

fn markup_to_string(&self, buf: &mut String)

Source§

impl<'a, T: Render + ?Sized> Render for &'a T

Source§

fn markup_to_string(&self, buf: &mut String)

Source§

impl<'a, T: Render + ?Sized> Render for &'a mut T

Source§

fn markup_to_string(&self, buf: &mut String)

Implementors§