[][src]Trait ecmascript::lexer::htmlentity::HTMLEntity

pub trait HTMLEntity {
type EscapeOutput;
type UnEscapeOutput;
    fn escape_html(self) -> Self::EscapeOutput;
fn unescape_html(self) -> Self::UnEscapeOutput; }

Associated Types

type EscapeOutput

type UnEscapeOutput

Loading content...

Required methods

fn escape_html(self) -> Self::EscapeOutput

fn unescape_html(self) -> Self::UnEscapeOutput

Loading content...

Implementations on Foreign Types

impl<'_> HTMLEntity for &'_ Vec<char>[src]

type EscapeOutput = Vec<char>

type UnEscapeOutput = Vec<char>

impl<'_> HTMLEntity for &'_ [u8][src]

type EscapeOutput = Vec<u8>

type UnEscapeOutput = Vec<u8>

impl<'_> HTMLEntity for &'_ str[src]

type EscapeOutput = String

type UnEscapeOutput = String

impl HTMLEntity for Vec<u8>[src]

type EscapeOutput = Vec<u8>

type UnEscapeOutput = Vec<u8>

impl<'_> HTMLEntity for &'_ Vec<u8>[src]

type EscapeOutput = Vec<u8>

type UnEscapeOutput = Vec<u8>

Loading content...

Implementors

Loading content...