pub fn decompress(
compressed: &[u8],
verbose: bool,
debug: bool,
) -> Result<(Buffer, Vec<usize>), Error>
Expand description
Deompress the compressed
bytes into a Buffer
and shape.
ยงErrors
Errors with
Error::ExcessiveSize
if the output shape cannot be converted fromu32
sError::CorruptedCompressedBytes
if thecompressed
bytes are corrupted