Skip to content

Commit 1403df7

Browse files
committed
Implement From for Cell, RefCell and UnsafeCell
1 parent 4c02363 commit 1403df7

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

src/libcore/cell.rs

+22
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@
146146

147147
use clone::Clone;
148148
use cmp::{PartialEq, Eq, PartialOrd, Ord, Ordering};
149+
use convert::From;
149150
use default::Default;
150151
use marker::{Copy, Send, Sync, Sized, Unsize};
151152
use ops::{Deref, DerefMut, Drop, FnOnce, CoerceUnsized};
@@ -326,6 +327,13 @@ impl<T:Ord + Copy> Ord for Cell<T> {
326327
}
327328
}
328329

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+
329337
/// A mutable memory location with dynamically checked borrow rules
330338
///
331339
/// See the [module-level documentation](index.html) for more.
@@ -635,6 +643,13 @@ impl<T: ?Sized + Ord> Ord for RefCell<T> {
635643
}
636644
}
637645

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+
638653
struct BorrowRef<'b> {
639654
borrow: &'b Cell<BorrowFlag>,
640655
}
@@ -957,3 +972,10 @@ impl<T: Default> Default for UnsafeCell<T> {
957972
UnsafeCell::new(Default::default())
958973
}
959974
}
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

Comments
 (0)