pointdexter 1.0.0-rc1

unifies *const/*mut pointers using the trait system
Moves `src` into the pointed `dst`, returning the previous `dst` value.

Neither value is dropped.

This function is semantically equivalent to [`mem::replace`] except that it
operates on raw pointers instead of references. When references are available,
[`mem::replace`] should be preferred.

# Original

- [`core::ptr::replace`]
- [`<*T>::replace`][orig]
- [`NonNull::replace`]

# Similar Functions

- [`crate::replace`]
- [`Pointer::replace`]
- [`NonNullPointer::replace`]

# Notes

The free function became `const fn` in Rust 1.83, which predates the MSRV of
this crate. However, the method became `const fn` in Rust 1.88, which postdates
it. To use the method as a `const fn`, enable the corresponding feature:

```toml
[dependencies.pointdexter]
features = ["rust_188"]
```

# Safety

Behavior is undefined if any of the following conditions are violated:

- `dst` must be [valid][1] for both reads and writes.
- `dst` must be properly aligned.
- `dst` must point to a properly initialized value of type `T`.

Note that even if `T` has size `0`, the pointer must be properly aligned.

# Examples

```rust
use pointdexter::*;

let mut rust = vec!['b', 'u', 's', 't'];

// `mem::replace` would have the same effect without requiring the unsafe
// block.
let b = unsafe {
  Pointer::from_raw_mut(&mut rust[0]).replace('r')
};

assert_eq!(b, 'b');
assert_eq!(rust, &['r', 'u', 's', 't']);
```

[`mem::replace`]: core::mem::replace
[orig]: https://doc.rust-lang.org/std/primitive.pointer.html#method.replace
[1]: https://doc.rust-lang.org/std/ptr/index.html#safety