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
/// Guard struct to allow the QueryGraph implementation to retain
/// empty nodes and edges, instead of destroying parts of the graph
/// and losing information in the process.
/// Considered an implementation detail of the QueryGraph.
pub(super) struct Guard<T: Sized> {
    content: Option<T>,
}

impl<T> Guard<T> {
    pub fn new(content: T) -> Self {
        Guard { content: Some(content) }
    }

    pub fn unset(&mut self) -> T {
        match self.content.take() {
            Some(c) => c,
            None => panic!("Logic error: Attempted to unset empty graph guard."),
        }
    }

    pub fn borrow(&self) -> Option<&T> {
        self.content.as_ref()
    }

    pub fn borrow_mut(&mut self) -> Option<&mut T> {
        self.content.as_mut()
    }

    pub fn into_inner(self) -> Option<T> {
        self.content
    }
}