Error Set PrepareError [src]
Errors
input stream ends before all FSE tables are read
an FSE table has an invalid accuracy
failed decoding an FSE table
the (reversed) literal bitstream's first byte does not have any bits set
on the first call if one of the sequence FSE tables is set to repeat mode
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,
}