Skip to content

Commit 6fa61b8

Browse files
committed
Auto merge of #32785 - tbu-:pr_more_defaults, r=alexcrichton
Implement `Default` for more types in the standard library Also add `Hash` to `std::cmp::Ordering` and most possible traits to `fmt::Error`.
2 parents fef6c64 + 3df35a0 commit 6fa61b8

File tree

6 files changed

+30
-2
lines changed

6 files changed

+30
-2
lines changed

src/libcore/cell.rs

+7
Original file line numberDiff line numberDiff line change
@@ -859,3 +859,10 @@ impl<T: ?Sized> UnsafeCell<T> {
859859
&self.value as *const T as *mut T
860860
}
861861
}
862+
863+
#[stable(feature = "unsafe_cell_default", since = "1.9.0")]
864+
impl<T: Default> Default for UnsafeCell<T> {
865+
fn default() -> UnsafeCell<T> {
866+
UnsafeCell::new(Default::default())
867+
}
868+
}

src/libcore/cmp.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ pub trait Eq: PartialEq<Self> {
128128
/// let result = 2.cmp(&1);
129129
/// assert_eq!(Ordering::Greater, result);
130130
/// ```
131-
#[derive(Clone, Copy, PartialEq, Debug)]
131+
#[derive(Clone, Copy, PartialEq, Debug, Hash)]
132132
#[stable(feature = "rust1", since = "1.0.0")]
133133
pub enum Ordering {
134134
/// An ordering where a compared value is less [than another].

src/libcore/fmt/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ pub type Result = result::Result<(), Error>;
6060
/// occurred. Any extra information must be arranged to be transmitted through
6161
/// some other means.
6262
#[stable(feature = "rust1", since = "1.0.0")]
63-
#[derive(Copy, Clone, Debug)]
63+
#[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
6464
pub struct Error;
6565

6666
/// A collection of methods that are required to format a message into a stream.

src/libstd/sync/condvar.rs

+7
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,13 @@ impl Condvar {
220220
pub fn notify_all(&self) { unsafe { self.inner.inner.notify_all() } }
221221
}
222222

223+
#[stable(feature = "condvar_default", since = "1.9.0")]
224+
impl Default for Condvar {
225+
fn default() -> Condvar {
226+
Condvar::new()
227+
}
228+
}
229+
223230
#[stable(feature = "rust1", since = "1.0.0")]
224231
impl Drop for Condvar {
225232
fn drop(&mut self) {

src/libstd/sync/mutex.rs

+7
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,13 @@ impl<T: ?Sized> Drop for Mutex<T> {
310310
}
311311
}
312312

313+
#[stable(feature = "mutex_default", since = "1.9.0")]
314+
impl<T: ?Sized + Default> Default for Mutex<T> {
315+
fn default() -> Mutex<T> {
316+
Mutex::new(Default::default())
317+
}
318+
}
319+
313320
#[stable(feature = "rust1", since = "1.0.0")]
314321
impl<T: ?Sized + fmt::Debug> fmt::Debug for Mutex<T> {
315322
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {

src/libstd/sync/rwlock.rs

+7
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,13 @@ impl<T: ?Sized + fmt::Debug> fmt::Debug for RwLock<T> {
346346
}
347347
}
348348

349+
#[stable(feature = "rw_lock_default", since = "1.9.0")]
350+
impl<T: Default> Default for RwLock<T> {
351+
fn default() -> RwLock<T> {
352+
RwLock::new(Default::default())
353+
}
354+
}
355+
349356
struct Dummy(UnsafeCell<()>);
350357
unsafe impl Sync for Dummy {}
351358
static DUMMY: Dummy = Dummy(UnsafeCell::new(()));

0 commit comments

Comments
 (0)