Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit a2fe5eb

Browse files
committed
Merge pull request #64 from Ogeon/master
Rust update: `DeepClone` was removed (rust-lang/rust#12706)
2 parents 648eee6 + 26a1a28 commit a2fe5eb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/http/headers/connection.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use headers::serialization_utils::normalise_header_name;
1010

1111
/// A value for the Connection header. Note that should it be a ``Token``, the string is in
1212
/// normalised header case (e.g. "Keep-Alive").
13-
#[deriving(Clone, DeepClone, Eq)]
13+
#[deriving(Clone, Eq)]
1414
pub enum Connection {
1515
Token(~str),
1616
Close,

src/http/headers/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ pub mod transfer_encoding;
6262

6363
pub type DeltaSeconds = u64;
6464

65-
#[deriving(Clone, DeepClone, Eq)]
65+
#[deriving(Clone, Eq)]
6666
pub enum ConsumeCommaLWSResult {
6767
CommaConsumed,
6868
EndOfValue,

0 commit comments

Comments
 (0)