Enum rc_zip::reader::ArchiveReaderResult
source · pub enum ArchiveReaderResult {
Continue,
Done(Archive),
}
Variants§
Continue
Indicates that ArchiveReader has work left, and the loop should continue.
Done(Archive)
Indicates that ArchiveReader is done reading the central directory,
contains an Archive. Calling any method after process() has returned
Done
will panic.