pub fn decompress_into(
encoded: &[u8],
decoded: AnyArrayViewMut<'_>,
) -> Result<(), ZlibCodecError>Expand description
Decompress the encoded data into a decoded array using Zlib.
ยงErrors
Errors with
ZlibCodecError::HeaderDecodeFailedif decoding the header failedZlibCodecError::MismatchedDecodeIntoArrayif thedecodedarray is of the wrong dtype or shapeZlibCodecError::HeaderDecodeFailedif decoding the header failedZlibCodecError::DecodeExcessiveEncodedDataif the encoded data contains excessive trailing data junkZlibCodecError::DecodeProducedLessif decoding produced less data than expectedZlibCodecError::ZlibDecodeFailedif an opaque decoding error occurred