Lines Matching defs:ZipEntryFromZip
58 type ZipEntryFromZip struct { struct
59 inputZip InputZip
60 index int
61 name string
62 isDir bool
63 crc32 uint32
64 size uint64
79 func (ze ZipEntryFromZip) String() string {
83 func (ze ZipEntryFromZip) IsDir() bool {
87 func (ze ZipEntryFromZip) CRC32() uint32 {
91 func (ze ZipEntryFromZip) Size() uint64 {
95 func (ze ZipEntryFromZip) WriteToZip(dest string, zw *zip.Writer) error {