Remove Clone from CompressionMethod
Copy ought to be enough
This commit is contained in:
parent
c4cf221f70
commit
1b63377d69
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
|
||||
name = "zip"
|
||||
version = "0.1.1"
|
||||
version = "0.1.2"
|
||||
authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>"]
|
||||
license = "MIT"
|
||||
repository = "https://github.com/mvdnes/zip-rs.git"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
//! Possible ZIP compression methods.
|
||||
|
||||
/// Compression methods for the contents of a ZIP file.
|
||||
#[derive(Clone, Copy)]
|
||||
#[derive(Copy)]
|
||||
pub enum CompressionMethod
|
||||
{
|
||||
/// The file is stored (no compression)
|
||||
|
|
Loading…
Add table
Reference in a new issue