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
//! End-user configuration of the local Ocean installation.
//!
//! This is tied heavily to `InstallTarget`.
pub use ;
/// Configuration values that are examined throughout the lifetime of a client
/// program.
///
/// This type supports interior mutability and thus is not [`Sync`]. Note that
/// despite this, it is still [`Send`].
///
/// [`Send`]: https://doc.rust-lang.org/std/marker/trait.Send.html
/// [`Sync`]: https://doc.rust-lang.org/std/marker/trait.Sync.html
assert_impl_all!;
assert_not_impl_all!;