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
///! This module works around the lifetimes for borrow when GAT isn't available
use std::marker::PhantomData;

use crate::{Context, Read, Result, SubWorld, Write};

use super::ContextBorrow;

#[doc(hidden)]
pub struct Borrower<T>(PhantomData<T>);

/// Lifetime erasure in waiting of GAT
pub trait IntoBorrow {
    /// The borrow type
    type Borrow: for<'x> ContextBorrow<'x>;
}

impl<T: 'static> IntoBorrow for Read<'_, T> {
    type Borrow = Borrower<T>;
}

impl<'a, T: 'static> ContextBorrow<'a> for Borrower<T> {
    type Target = Read<'a, T>;

    fn borrow(context: &'a Context) -> Result<Self::Target> {
        Self::Target::borrow(context)
    }
}

#[doc(hidden)]
pub struct BorrowerMut<T>(PhantomData<T>);

impl<T: 'static> IntoBorrow for Write<'_, T> {
    type Borrow = BorrowerMut<T>;
}

impl<'a, T: 'static> ContextBorrow<'a> for BorrowerMut<T> {
    type Target = Write<'a, T>;

    fn borrow(context: &'a Context) -> Result<Self::Target> {
        Self::Target::borrow(context)
    }
}

#[doc(hidden)]
pub struct SubWorldBorrower<T>(PhantomData<T>);

impl<T: 'static> IntoBorrow for SubWorld<'_, T> {
    type Borrow = SubWorldBorrower<T>;
}

impl<'a, T: 'static> ContextBorrow<'a> for SubWorldBorrower<T> {
    type Target = SubWorld<'a, T>;

    fn borrow(context: &'a Context) -> Result<Self::Target> {
        Self::Target::borrow(context)
    }
}