Lines Matching defs:ZipEntryFromZip
56 type ZipEntryFromZip struct { struct
57 inputZip InputZip
58 index int
59 name string
60 isDir bool
61 crc32 uint32
62 size uint64
77 func (ze ZipEntryFromZip) String() string {
81 func (ze ZipEntryFromZip) IsDir() bool {
85 func (ze ZipEntryFromZip) CRC32() uint32 {
89 func (ze ZipEntryFromZip) Size() uint64 {
93 func (ze ZipEntryFromZip) WriteToZip(dest string, zw *zip.Writer) error {