Derive Debug for read::ZipArchive

Resolves #15
This commit is contained in:
Mathijs van de Nes 2016-08-08 17:34:02 +02:00
parent 18fb1fb0c0
commit 2a3fe099a6
3 changed files with 4 additions and 2 deletions

View file

@ -1,7 +1,7 @@
//! Possible ZIP compression methods. //! Possible ZIP compression methods.
/// Compression methods for the contents of a ZIP file. /// Compression methods for the contents of a ZIP file.
#[derive(Copy, Clone, PartialEq)] #[derive(Copy, Clone, PartialEq, Debug)]
pub enum CompressionMethod pub enum CompressionMethod
{ {
/// The file is stored (no compression) /// The file is stored (no compression)

View file

@ -48,6 +48,7 @@ mod ffi {
/// ///
/// println!("Result: {:?}", doit()); /// println!("Result: {:?}", doit());
/// ``` /// ```
#[derive(Debug)]
pub struct ZipArchive<R: Read + io::Seek> pub struct ZipArchive<R: Read + io::Seek>
{ {
reader: R, reader: R,

View file

@ -3,7 +3,7 @@
use time; use time;
#[derive(Clone, Copy)] #[derive(Clone, Copy, Debug)]
pub enum System pub enum System
{ {
Dos, Dos,
@ -29,6 +29,7 @@ impl System {
pub const DEFAULT_VERSION: u8 = 20; pub const DEFAULT_VERSION: u8 = 20;
/// Structure representing a ZIP file. /// Structure representing a ZIP file.
#[derive(Debug)]
pub struct ZipFileData pub struct ZipFileData
{ {
/// Compatibility of the file attribute information /// Compatibility of the file attribute information