summaryrefslogtreecommitdiffstats
path: root/third_party/rust/wpf-gpu-raster/src/nullable_ref.rs
blob: 1e8389e5b7cf6620a7653ef2f37212750c949482 (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
51
52
53
use std::{marker::PhantomData, ops::Deref};

pub struct Ref<'a, T> {
    ptr: *const T,
    _phantom: PhantomData<&'a T>
}

impl<'a, T> Copy for Ref<'a, T> { }

impl<'a, T> Clone for Ref<'a, T> {
    fn clone(&self) -> Self {
        *self
    }
}

impl<'a, T> Ref<'a, T> {
    pub fn new(p: &'a T) -> Self {
        Ref { ptr: p as *const T, _phantom: PhantomData}
    }
    pub unsafe fn null() -> Self {
        Ref { ptr: std::ptr::null(), _phantom: PhantomData}
    }
    pub fn is_null(&self) -> bool {
        self.ptr.is_null()
    }
    pub fn get_ref(self) -> &'a T {
        unsafe { &*self.ptr }
    }
}

impl<'a, T> PartialEq for Ref<'a, T> {
    fn eq(&self, other: &Self) -> bool {
        self.ptr == other.ptr && self._phantom == other._phantom
    }
}

impl<'a, T> PartialOrd for Ref<'a, T> {
    fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
        match self.ptr.partial_cmp(&other.ptr) {
            Some(core::cmp::Ordering::Equal) => {}
            ord => return ord,
        }
        self._phantom.partial_cmp(&other._phantom)
    }
}

impl<'a, T> Deref for Ref<'a, T> {
    type Target = T;

    fn deref(&self) -> &Self::Target {
        unsafe { &*self.ptr }
    }
}