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
use core::mem::transmute;
use core::ops::DerefMut;

use crate::Compact;

/// Types that can be mutably borrowed from [`Compact`]. Typically derived from
/// [`EnumPtr`](crate::EnumPtr).
pub trait CompactBorrowMut
where
    Self: From<Compact<Self>>,
    Compact<Self>: From<Self>,
{
    type Target<'a>
    where
        Self: 'a;

    fn borrow_mut(compact: &mut Compact<Self>) -> Self::Target<'_>;
}

/// Types that can be used by [`get_mut`](crate::get_mut) and to derive
/// [`CompactBorrowMut`].
///
/// It's like [`DerefMut`] but with flexible targets and strict constraints.
///
/// # Safety
///
/// `T` must not `deref_mut` to something that points to its own memory.
///
/// A counter-example is `ManuallyDrop<T>`, which will `deref_mut` to `&mut T`.
pub unsafe trait FieldDerefMut {
    type Target<'a>
    where
        Self: 'a;

    fn deref_mut(&mut self) -> Self::Target<'_>;

    #[doc(hidden)]
    #[inline]
    unsafe fn force_deref_mut<'a>(&mut self) -> Self::Target<'a> {
        transmute(self.deref_mut())
    }
}

unsafe impl<T> FieldDerefMut for &mut T {
    type Target<'a> = &'a mut T
    where
        Self: 'a;

    #[inline]
    fn deref_mut(&mut self) -> Self::Target<'_> {
        DerefMut::deref_mut(self)
    }
}

unsafe impl<T> FieldDerefMut for Option<&mut T> {
    type Target<'a> = Option<&'a mut T>
    where
        Self: 'a;

    #[inline]
    fn deref_mut(&mut self) -> Self::Target<'_> {
        self.as_deref_mut()
    }
}

#[cfg(feature = "alloc")]
mod alloc_impl {
    use super::*;

    use alloc::boxed::Box;

    unsafe impl<T> FieldDerefMut for Box<T> {
        type Target<'a> = &'a mut T
        where
            Self: 'a;

        #[inline]
        fn deref_mut(&mut self) -> Self::Target<'_> {
            DerefMut::deref_mut(self)
        }
    }

    unsafe impl<T> FieldDerefMut for Option<Box<T>> {
        type Target<'a> = Option<&'a mut T>
        where
            Self: 'a;

        #[inline]
        fn deref_mut(&mut self) -> Self::Target<'_> {
            self.as_deref_mut()
        }
    }
}