diff options
| author | Jonathan Reem <jonathan.reem@gmail.com> | 2015-07-26 22:12:00 -0700 |
|---|---|---|
| committer | Jonathan Reem <jonathan.reem@gmail.com> | 2015-07-28 01:43:17 -0700 |
| commit | e24423091f0690a83e63ee234bee5627a86b51f0 (patch) | |
| tree | 3868b0ef0e26c53144c05e699acd757c2fe46ede /src/libstd/ffi | |
| parent | 184267cac6488c2f164dba469df5ef85533e148f (diff) | |
| download | rust-e24423091f0690a83e63ee234bee5627a86b51f0.tar.gz rust-e24423091f0690a83e63ee234bee5627a86b51f0.zip | |
Implement Clone for Box<[T]> where T: Clone
Closes #25097
Diffstat (limited to 'src/libstd/ffi')
| -rw-r--r-- | src/libstd/ffi/c_str.rs | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/libstd/ffi/c_str.rs b/src/libstd/ffi/c_str.rs index c9fe6e7e0b1..6eb0719d9f6 100644 --- a/src/libstd/ffi/c_str.rs +++ b/src/libstd/ffi/c_str.rs @@ -11,7 +11,6 @@ use ascii; use borrow::{Cow, ToOwned, Borrow}; use boxed::Box; -use clone::Clone; use convert::{Into, From}; use cmp::{PartialEq, Eq, PartialOrd, Ord, Ordering}; use error::Error; @@ -62,7 +61,7 @@ use vec::Vec; /// } /// # } /// ``` -#[derive(PartialEq, PartialOrd, Eq, Ord, Hash)] +#[derive(PartialEq, PartialOrd, Eq, Ord, Hash, Clone)] #[stable(feature = "rust1", since = "1.0.0")] pub struct CString { inner: Box<[u8]>, @@ -251,13 +250,6 @@ impl CString { } #[stable(feature = "rust1", since = "1.0.0")] -impl Clone for CString { - fn clone(&self) -> Self { - CString { inner: self.inner.to_owned().into_boxed_slice() } - } -} - -#[stable(feature = "rust1", since = "1.0.0")] impl Deref for CString { type Target = CStr; |
