Rollup merge of #23995 - aturon:cow-as-ref, r=huonw

The existing impl had the too-strong requirement of `Clone`, when only
`ToOwned` was needed.
This commit is contained in:
Manish Goregaokar 2015-04-04 10:53:37 +05:30
commit cf2773e327
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ impl<'a, B: ?Sized> IntoCow<'a, B> for Cow<'a, B> where B: ToOwned {
}
#[stable(feature = "rust1", since = "1.0.0")]
impl<'a, T: Clone> AsRef<T> for Cow<'a, T> {
impl<'a, T: ?Sized + ToOwned> AsRef<T> for Cow<'a, T> {
fn as_ref(&self) -> &T {
self
}