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
use ;
/// Common capabilities supported by [`Document`](Document)s, [`Folder`](Folder)s and [`PathBuf`](std::path::PathBuf)s
///
/// Note: this trait is object-safe, which means it can be used as variable, function parameter and function return
/// types.
///
/// ```
/// fn test2() {
/// let a: &[&dyn FileSystemEntity] = &[
/// &Document::at(User(Pictures(&[""])), "pic", Create::No),
/// &User(Pictures(&[""])),
/// &Project(Data(&[]).with_id("qualifier", "organization", "application")),
/// &PathBuf::new(),
/// ];
/// for b in a {
/// println!("{:?} {} exist.", b, if b.exists() {"does"} else {"doesn't"});
/// }
/// }
/// ```