Expand description
WebSocket message decompression utilities
Provides gzip decompression for WebSocket messages received from the server. The server compresses messages over 512 bytes automatically.
Enums§
- Decompress
Error - Decompression error types
Functions§
- decompress_
gzip - Decompress gzip data using miniz_oxide (pure Rust, WASM-compatible)
- decompress_
gzip_ with_ limit - Decompress gzip data with a maximum output size limit.
- decompress_
if_ gzip - Decompress gzip data, or return the input unchanged.
- is_gzip
- Check if data is gzip compressed (magic bytes check)