1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
//! Erased reference types, all are 3 pointers wide

use core::fmt;
use core::marker::PhantomData;
use core::ptr::Pointee;

use crate::ErasedNonNull;

/// An erased reference, referencing a (possibly unsized) value of unknown type. Creating one is
/// safe, but converting it back into any type is unsafe as it requires the user to know the type
/// stored behind the reference.
///
/// This type will always be three pointers wide, even for sized types, due to needing to store
/// an unknown metadata.
pub struct ErasedRef<'a> {
    ptr: ErasedNonNull,
    _phantom: PhantomData<&'a ()>,
}

impl<'a> ErasedRef<'a> {
    /// Create a new `ErasedRef` from a reference
    pub fn new<T: ?Sized>(val: &T) -> ErasedRef<'a> {
        ErasedRef {
            ptr: ErasedNonNull::from(val),
            _phantom: PhantomData,
        }
    }

    /// Get the internal erased pointer of this reference
    pub fn as_ptr(&self) -> &ErasedNonNull {
        &self.ptr
    }

    /// Get back the reference stored in this `ErasedRef`
    ///
    /// # Safety
    ///
    /// The provided `T` must be the same type as originally stored in the reference
    pub unsafe fn reify_ref<T: ?Sized + Pointee>(&self) -> &T {
        self.ptr.reify_ptr::<T>().as_ref()
    }
}

impl fmt::Pointer for ErasedRef<'_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        fmt::Pointer::fmt(&self.ptr, f)
    }
}

impl fmt::Debug for ErasedRef<'_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("ErasedRef")
            .field("ptr", &self.ptr)
            .finish_non_exhaustive()
    }
}

/// An erased mutable reference, referencing a (possibly unsized) value of unknown type. Creating
/// one is safe, but converting it back into any type is unsafe as it requires the user to know the
/// type stored behind the reference.
///
/// This type will always be three pointers wide, even for sized types, due to needing to store
/// an unknown metadata.
pub struct ErasedMut<'a> {
    ptr: ErasedNonNull,
    _phantom: PhantomData<&'a mut ()>,
}

impl<'a> ErasedMut<'a> {
    /// Create a new `ErasedMute` from a reference
    pub fn new<T: ?Sized>(val: &mut T) -> ErasedMut<'a> {
        ErasedMut {
            ptr: ErasedNonNull::from(val),
            _phantom: PhantomData,
        }
    }

    /// Get the internal erased pointer of this reference
    pub fn as_ptr(&self) -> &ErasedNonNull {
        &self.ptr
    }

    /// Get back the mutable reference stored in this `ErasedRef`
    ///
    /// # Safety
    ///
    /// The provided `T` must be the same type as originally stored in the reference
    pub unsafe fn reify_ref<T: ?Sized + Pointee>(&mut self) -> &mut T {
        self.ptr.reify_ptr::<T>().as_mut()
    }
}

impl fmt::Pointer for ErasedMut<'_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        fmt::Pointer::fmt(&self.ptr, f)
    }
}

impl fmt::Debug for ErasedMut<'_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("ErasedRef")
            .field("ptr", &self.ptr)
            .finish_non_exhaustive()
    }
}