[][src]Trait cssparser::EncodingSupport

pub trait EncodingSupport {
    type Encoding;
    fn from_label(ascii_label: &[u8]) -> Option<Self::Encoding>;
fn utf8() -> Self::Encoding;
fn is_utf16_be_or_le(encoding: &Self::Encoding) -> bool; }

Abstraction for avoiding a dependency from cssparser to an encoding library

Associated Types

type Encoding

One character encoding

Loading content...

Required methods

fn from_label(ascii_label: &[u8]) -> Option<Self::Encoding>

https://encoding.spec.whatwg.org/#concept-encoding-get

fn utf8() -> Self::Encoding

Return the UTF-8 encoding

fn is_utf16_be_or_le(encoding: &Self::Encoding) -> bool

Whether the given encoding is UTF-16BE or UTF-16LE

Loading content...

Implementors

Loading content...