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
use ;
use crate::;
/// A Path object identifies a piece of the data store.
///
/// It can convert a borrow of the store's data to a borrow of the piece it identifies.
///
/// Often, you won't be working with the `Path` trait itself, but rather
/// the [PathExt][crate::PathExt] trait.
///
/// Path objects are mostly generated by `#[derive(x_bow::Trackable)]`.
/// To hand-implement, see example code in `src/impls/stdlib`.