|
146 | 146 |
|
147 | 147 | use clone::Clone;
|
148 | 148 | use cmp::{PartialEq, Eq, PartialOrd, Ord, Ordering};
|
| 149 | +use convert::From; |
149 | 150 | use default::Default;
|
150 | 151 | use marker::{Copy, Send, Sync, Sized, Unsize};
|
151 | 152 | use ops::{Deref, DerefMut, Drop, FnOnce, CoerceUnsized};
|
@@ -326,6 +327,13 @@ impl<T:Ord + Copy> Ord for Cell<T> {
|
326 | 327 | }
|
327 | 328 | }
|
328 | 329 |
|
| 330 | +#[stable(feature = "cell_from", since = "1.12.0")] |
| 331 | +impl<T: Copy> From<T> for Cell<T> { |
| 332 | + fn from(t: T) -> Cell<T> { |
| 333 | + Cell::new(t) |
| 334 | + } |
| 335 | +} |
| 336 | + |
329 | 337 | /// A mutable memory location with dynamically checked borrow rules
|
330 | 338 | ///
|
331 | 339 | /// See the [module-level documentation](index.html) for more.
|
@@ -635,6 +643,13 @@ impl<T: ?Sized + Ord> Ord for RefCell<T> {
|
635 | 643 | }
|
636 | 644 | }
|
637 | 645 |
|
| 646 | +#[stable(feature = "cell_from", since = "1.12.0")] |
| 647 | +impl<T> From<T> for RefCell<T> { |
| 648 | + fn from(t: T) -> RefCell<T> { |
| 649 | + RefCell::new(t) |
| 650 | + } |
| 651 | +} |
| 652 | + |
638 | 653 | struct BorrowRef<'b> {
|
639 | 654 | borrow: &'b Cell<BorrowFlag>,
|
640 | 655 | }
|
@@ -957,3 +972,10 @@ impl<T: Default> Default for UnsafeCell<T> {
|
957 | 972 | UnsafeCell::new(Default::default())
|
958 | 973 | }
|
959 | 974 | }
|
| 975 | + |
| 976 | +#[stable(feature = "cell_from", since = "1.12.0")] |
| 977 | +impl<T> From<T> for UnsafeCell<T> { |
| 978 | + fn from(t: T) -> UnsafeCell<T> { |
| 979 | + UnsafeCell::new(t) |
| 980 | + } |
| 981 | +} |
0 commit comments