mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 21:53:09 +08:00
36 lines
716 B
Rust
36 lines
716 B
Rust
use std::ops::Deref;
|
|
|
|
/// Raw pointer that implements Default.
|
|
/// Additionally it implements Deref so it's more ergonomic than Option<std::ptr::NonNull>.
|
|
#[derive(Debug)]
|
|
pub struct ConstPointer<T>(pub *const T);
|
|
|
|
impl<T> From<&T> for ConstPointer<T> {
|
|
fn from(value: &T) -> Self {
|
|
Self(value)
|
|
}
|
|
}
|
|
|
|
impl<T> Default for ConstPointer<T> {
|
|
fn default() -> Self {
|
|
Self(std::ptr::null())
|
|
}
|
|
}
|
|
|
|
impl<T> Clone for ConstPointer<T> {
|
|
fn clone(&self) -> Self {
|
|
*self
|
|
}
|
|
}
|
|
|
|
impl<T> Copy for ConstPointer<T> {}
|
|
|
|
impl<T> Deref for ConstPointer<T> {
|
|
type Target = T;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
assert!(!self.0.is_null());
|
|
unsafe { &*self.0 }
|
|
}
|
|
}
|