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::HeaderDecodeFailed
if decoding the header failedZlibCodecError::MismatchedDecodeIntoArray
if thedecoded
array is of the wrong dtype or shapeZlibCodecError::HeaderDecodeFailed
if decoding the header failedZlibCodecError::DecodeExcessiveEncodedData
if the encoded data contains excessive trailing data junkZlibCodecError::DecodeProducedLess
if decoding produced less data than expectedZlibCodecError::ZlibDecodeFailed
if an opaque decoding error occurred