Error Set PrepareError [src]

Errors

EndOfStream

input stream ends before all FSE tables are read

InputBufferUndersize
MalformedAccuracyLog

an FSE table has an invalid accuracy

MalformedFseTable

failed decoding an FSE table

MissingStartBit

the (reversed) literal bitstream's first byte does not have any bits set

ReadFailed
RepeatModeFirst

on the first call if one of the sequence FSE tables is set to repeat mode

TreelessLiteralsFirst

literals is a treeless literals section and the decode state does not have a Huffman tree from a previous block

Source

pub const PrepareError = error{ /// the (reversed) literal bitstream's first byte does not have any bits set MissingStartBit, /// `literals` is a treeless literals section and the decode state does not /// have a Huffman tree from a previous block TreelessLiteralsFirst, /// on the first call if one of the sequence FSE tables is set to repeat mode RepeatModeFirst, /// an FSE table has an invalid accuracy MalformedAccuracyLog, /// failed decoding an FSE table MalformedFseTable, /// input stream ends before all FSE tables are read EndOfStream, ReadFailed, InputBufferUndersize, }