| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Codec.Archive.Zip.Conduit.Types
Documentation
Errors thrown during zip file processing
Summary information at the end of a zip stream.
Constructors
| ZipInfo | |
Fields | |
(The beginning of) a single entry in a zip stream, which may be any file or directory. As per zip file conventions, directory names should end with a slash and have no data, but this library does not ensure that.
Constructors
| ZipEntry | |
Fields
| |
Constructors
| ZipDataByteString ByteString | A known ByteString, which will be fully evaluated (not streamed) |
| ZipDataSource (Source m ByteString) | A byte stream producer, streamed (and compressed) directly into the zip |
sourceZipData :: Monad m => ZipData m -> Source m ByteString Source #
Normalize any ZipData to a simple source