summaryrefslogtreecommitdiffstats
path: root/third_party/rust/fluent-fallback/src/pin_cell/pin_mut.rs
blob: 09a4d4a6fbe57c7079da9c03b4c421d2de8864b5 (plain)
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
use core::cell::RefMut;
use core::fmt;
use core::ops::Deref;
use core::pin::Pin;

#[derive(Debug)]
/// A wrapper type for a mutably borrowed value from a `PinCell<T>`.
pub struct PinMut<'a, T: ?Sized> {
    pub(crate) inner: Pin<RefMut<'a, T>>,
}

impl<'a, T: ?Sized> Deref for PinMut<'a, T> {
    type Target = T;

    fn deref(&self) -> &T {
        &*self.inner
    }
}

impl<'a, T: ?Sized> PinMut<'a, T> {
    /// Get a pinned mutable reference to the value inside this wrapper.
    pub fn as_mut<'b>(orig: &'b mut PinMut<'a, T>) -> Pin<&'b mut T> {
        orig.inner.as_mut()
    }
}

/* TODO implement these APIs

impl<'a, T: ?Sized> PinMut<'a, T> {
    pub fn map<U, F>(orig: PinMut<'a, T>, f: F) -> PinMut<'a, U> where
        F: FnOnce(Pin<&mut T>) -> Pin<&mut U>,
    {
        panic!()
    }

    pub fn map_split<U, V, F>(orig: PinMut<'a, T>, f: F) -> (PinMut<'a, U>, PinMut<'a, V>) where
        F: FnOnce(Pin<&mut T>) -> (Pin<&mut U>, Pin<&mut V>)
    {
        panic!()
    }
}
*/

impl<'a, T: fmt::Display + ?Sized> fmt::Display for PinMut<'a, T> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        <T as fmt::Display>::fmt(&**self, f)
    }
}

// TODO CoerceUnsized