File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 9b97264d81bfb39f55d645f5c1cccb790dfd9d58
2
+ refs/heads/master: 804efdabcdf5c44051845e11cdcd10efa636688e
3
3
refs/heads/snap-stage3: 1af31d4974e33027a68126fa5a5a3c2c6491824f
4
4
refs/heads/try: ea3892f76a2180dd4ce724f1dafd9186959702d9
5
5
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
Original file line number Diff line number Diff line change @@ -1352,6 +1352,13 @@ impl<T> AsRef<Vec<T>> for Vec<T> {
1352
1352
}
1353
1353
}
1354
1354
1355
+ #[ stable( feature = "vec_as_mut" , since = "1.5.0" ) ]
1356
+ impl < T > AsMut < Vec < T > > for Vec < T > {
1357
+ fn as_mut ( & mut self ) -> & mut Vec < T > {
1358
+ self
1359
+ }
1360
+ }
1361
+
1355
1362
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1356
1363
impl < T > AsRef < [ T ] > for Vec < T > {
1357
1364
fn as_ref ( & self ) -> & [ T ] {
You can’t perform that action at this time.
0 commit comments