type EscapeOutput
type UnEscapeOutput
fn escape_html(self) -> Self::EscapeOutput
fn unescape_html(self) -> Self::UnEscapeOutput
impl<'_> HTMLEntity for &'_ Vec<char>
[src]type EscapeOutput = Vec<char>
type UnEscapeOutput = Vec<char>
fn escape_html(self) -> Self::EscapeOutput
[src]fn unescape_html(self) -> Self::UnEscapeOutput
[src]impl<'_> HTMLEntity for &'_ [u8]
[src]type EscapeOutput = Vec<u8>
type UnEscapeOutput = Vec<u8>
fn escape_html(self) -> Self::EscapeOutput
[src]fn unescape_html(self) -> Self::UnEscapeOutput
[src]impl<'_> HTMLEntity for &'_ str
[src]type EscapeOutput = String
type UnEscapeOutput = String
fn escape_html(self) -> Self::EscapeOutput
[src]fn unescape_html(self) -> Self::UnEscapeOutput
[src]impl HTMLEntity for Vec<u8>
[src]type EscapeOutput = Vec<u8>
type UnEscapeOutput = Vec<u8>
fn escape_html(self) -> Self::EscapeOutput
[src]fn unescape_html(self) -> Self::UnEscapeOutput
[src]impl<'_> HTMLEntity for &'_ Vec<u8>
[src]type EscapeOutput = Vec<u8>
type UnEscapeOutput = Vec<u8>
fn escape_html(self) -> Self::EscapeOutput
[src]fn unescape_html(self) -> Self::UnEscapeOutput
[src]