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
use ;
/// Allows borrowing a value of type `T` from the implementing type. This can be used to constrain
/// a `Handle` argument to ensure it can be used with the corresponding `BorrowBag`.
///
/// # Examples
///
/// ```rust
/// # use borrow_bag::*;
/// #
/// fn borrow_from<V, T, N>(bag: &BorrowBag<V>, handle: Handle<T, N>) -> &T
/// where
/// V: Lookup<T, N>,
/// {
/// bag.borrow(handle)
/// }
/// #
/// # fn main() {
/// # let bag = BorrowBag::new();
/// # let (bag, handle) = bag.add(1u8);
/// #
/// # assert_eq!(1u8, *borrow_from(&bag, handle));
/// # }
/// ```