ivgtr/moonzip/types does not have a README file
pub(all) struct DeflateOptions {
level : Int
mem : Int
dictionary : FixedArray[Byte]?
}impl Show for DeflateOptionspub(all) enum FlateErrorCode {
UnexpectedEOF
InvalidBlockType
InvalidLengthLiteral
InvalidDistance
StreamFinished
NoStreamHandler
InvalidHeader
NoCallback
InvalidUTF8
ExtraFieldTooLong
InvalidDate
FilenameTooLong
StreamFinishing
InvalidZipData
UnknownCompressionMethod
}impl Eq for FlateErrorCodeimpl Show for FlateErrorCodepub(all) struct GzipOptions {
level : Int
mem : Int
mtime : Int?
filename : String?
comment : String?
extra : FixedArray[Byte]?
}impl Show for GzipOptionspub(all) struct InflateOptions {
size : Int?
dictionary : FixedArray[Byte]?
}impl Show for InflateOptionspub(all) struct UnzipFileInfo {
name : String
size : Int
original_size : Int
compression : Int
mtime : Int
attrs : Int
comment : String
extra : Map[Int, FixedArray[Byte]]
}impl Show for UnzipFileInfopub(all) struct ZipAttributes {
os : Int?
attrs : Int?
comment : String?
extra : Map[Int, FixedArray[Byte]]?
}impl Show for ZipAttributesimpl Show for ZipEntryOptionspub(all) struct ZipOptions {
level : Int
mtime : Int?
comment : String?
}impl Show for ZipOptionspub(all) struct ZlibOptions {
level : Int
mem : Int
dictionary : FixedArray[Byte]?
}impl Show for ZlibOptionsA MoonBit compression library compatible with fflate