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
50
//! Configuration types for enabling/disabling features are compile time.
//!
//! By disabling features, the compiler can generate faster code which can be important for certain use cases.
//! Certain implementations/conversion operations will only be available if the corresponding features were enabled.
/// Type-level boolean.
/// Type-level true.
/// Type-level false.
/// Configures which features should be enabled for a [`StringOffsets`] instance.
/// Configuration type that enables all features.
/// Configuration type that only enables line conversions.