We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d6b0f6 commit bf27819Copy full SHA for bf27819
library/core/src/mem/mod.rs
@@ -812,9 +812,15 @@ pub fn take<T: Default>(dest: &mut T) -> T {
812
#[inline]
813
#[stable(feature = "rust1", since = "1.0.0")]
814
#[must_use = "if you don't need the old value, you can just assign the new value directly"]
815
-pub fn replace<T>(dest: &mut T, mut src: T) -> T {
816
- swap(dest, &mut src);
817
- src
+pub fn replace<T>(dest: &mut T, src: T) -> T {
+ // SAFETY: We read from `dest` but directly write `src` into it afterwards,
+ // such that the old value is not duplicated. Nothing is dropped and
818
+ // nothing here can panic.
819
+ unsafe {
820
+ let result = ptr::read(dest);
821
+ ptr::write(dest, src);
822
+ result
823
+ }
824
}
825
826
/// Disposes of a value.
0 commit comments