pub trait TextDecoderMethods {
    // Required methods
    fn Encoding(&self) -> DOMString;
    fn Fatal(&self) -> bool;
    fn IgnoreBOM(&self) -> bool;
    fn Decode(
        &self,
        input: Option<ArrayBufferViewOrArrayBuffer>,
        options: &TextDecodeOptions
    ) -> Result<USVString, Error>;
}

Required Methods§

Implementors§