parent
18fb1fb0c0
commit
2a3fe099a6
3 changed files with 4 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
//! Possible ZIP compression methods.
|
||||
|
||||
/// Compression methods for the contents of a ZIP file.
|
||||
#[derive(Copy, Clone, PartialEq)]
|
||||
#[derive(Copy, Clone, PartialEq, Debug)]
|
||||
pub enum CompressionMethod
|
||||
{
|
||||
/// The file is stored (no compression)
|
||||
|
|
|
@ -48,6 +48,7 @@ mod ffi {
|
|||
///
|
||||
/// println!("Result: {:?}", doit());
|
||||
/// ```
|
||||
#[derive(Debug)]
|
||||
pub struct ZipArchive<R: Read + io::Seek>
|
||||
{
|
||||
reader: R,
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
use time;
|
||||
|
||||
|
||||
#[derive(Clone, Copy)]
|
||||
#[derive(Clone, Copy, Debug)]
|
||||
pub enum System
|
||||
{
|
||||
Dos,
|
||||
|
@ -29,6 +29,7 @@ impl System {
|
|||
pub const DEFAULT_VERSION: u8 = 20;
|
||||
|
||||
/// Structure representing a ZIP file.
|
||||
#[derive(Debug)]
|
||||
pub struct ZipFileData
|
||||
{
|
||||
/// Compatibility of the file attribute information
|
||||
|
|
Loading…
Add table
Reference in a new issue