parent
18fb1fb0c0
commit
2a3fe099a6
3 changed files with 4 additions and 2 deletions
|
@ -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)
|
||||||
|
|
|
@ -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,
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue