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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
// Copyright (C) 2026 Francis Xavier Wazeter IV
// SPDX-License-Identifier: GPL-3.0-or-later
//
// This file is part of the Bistun Linguistic Metadata Service (LMS).
// See the LICENSE file in the workspace root for full license information.
//! # Traits Dictionary & Enumerations
//! **Crate**: `bistun-core`
//! **Ref**: `[011-LMS-DTO]`
//! **Domain**: `Typology`
//! **Location**: `crates/bistun-core/src/traits.rs`
//!
//! **Why**: This module defines the shared vocabulary (`TraitKey` and Enums) used to encapsulate the `Typology (ISO 639-3)` and `Orthography (ISO 15924)` properties of a locale.
//! **Impact**: If this module is compromised, the `CapabilityManifest (DTO)` cannot be constructed, breaking the capability engine and causing downstream services to fail.
//!
//! ### Architectural Topology
//! * **Tier**: `0`
//! * **Dependencies**: `serde`
//! * **Consumers**: `bistun-lms`, `bistun-cli`
//! * **State Model**: `Stateless`
//! * **Design Patterns**: `Untagged Serialization`
//!
//! ### Local Definitions
//! * **Typology (ISO 639-3)**: The structural classification of languages based on grammar and syntax rules (e.g., Agglutinative vs. Isolating).
//! * **Orthography (ISO 15924)**: The technical rendering mechanics of a writing system, dictating rules like text direction and font shaping.
//! * **Pessimistic Complexity Heuristic**: A conflict-resolution algorithm used in multi-script environments. It always selects the most computationally expensive requirement (e.g., forcing dictionary-based segmentation if even one script requires it).
//! * **Untagged Serialization**: A Serde configuration where enums are serialized as their underlying value rather than explicitly wrapping them in their variant name.
use ;
/// The "Golden Set" of trait keys used in the `CapabilityManifest (DTO)`.
///
/// **Time**: `O(1)` | **Space**: `O(1)`
///
/// ### `OpenAPI` Schema
/// ```yaml
/// schema: TraitKey
/// description: The deterministic keys used to map linguistic traits.
/// ```
///
/// # Algorithmic Execution Trace (Internal)
/// 1. Represents standard keys for the `DTO` `traits` map.
/// 2. Utilizes `SCREAMING_SNAKE_CASE` serialization to match the `DTO` standard.
///
/// # Examples
/// ```rust
/// # // The '#' hides this setup boilerplate from docs.rs.
/// # use bistun_core::traits::TraitKey;
/// let key = TraitKey::SegmentationStrategy;
/// assert_eq!(key, TraitKey::SegmentationStrategy);
/// ```
/// The UI rendering direction derived from `Orthography (ISO 15924)` mechanics.
///
/// **Time**: `O(1)` | **Space**: `O(1)`
///
/// ### `OpenAPI` Schema
/// ```yaml
/// schema: Direction
/// description: The primary rendering direction required by a script.
/// ```
///
/// # Algorithmic Execution Trace (Internal)
/// 1. Represents the text layout requirements for a specific script.
/// 2. Utilizes `UPPERCASE` serialization for cross-system compatibility.
///
/// # Examples
/// ```rust
/// # // The '#' hides this setup boilerplate from docs.rs.
/// # use bistun_core::traits::Direction;
/// let dir = Direction::RTL;
/// assert_eq!(dir, Direction::RTL);
/// ```
/// The boundary detection logic (Segmentation) required by the script.
///
/// Ordered from the lowest complexity to highest to support the `Pessimistic Complexity Heuristic` strategy.
///
/// **Time**: `O(1)` | **Space**: `O(1)`
///
/// ### `OpenAPI` Schema
/// ```yaml
/// schema: SegType
/// description: The boundary detection logic and complexity level.
/// ```
///
/// # Algorithmic Execution Trace (Internal)
/// 1. Ordered explicitly to allow `Ord` trait derivation to rank complexity automatically.
/// 2. Permits `TraitAggregator` to resolve conflicts seamlessly.
///
/// # Examples
/// ```rust
/// # // The '#' hides this setup boilerplate from docs.rs.
/// # use bistun_core::traits::SegType;
/// // Demonstrating Pessimistic Complexity Heuristic ordinal comparison
/// assert!(SegType::DICTIONARY > SegType::SPACE);
/// ```
/// The Typological structure of a language's word formation.
///
/// **Time**: `O(1)` | **Space**: `O(1)`
///
/// ### `OpenAPI` Schema
/// ```yaml
/// schema: MorphType
/// description: The typological classification of a language's structural grammar.
/// ```
///
/// # Algorithmic Execution Trace (Internal)
/// 1. Maps language identity to execution strategies for `NLP` operations (e.g., stemming).
///
/// # Examples
/// ```rust
/// # // The '#' hides this setup boilerplate from docs.rs.
/// # use bistun_core::traits::MorphType;
/// let morph = MorphType::AGGLUTINATIVE;
/// assert_eq!(morph, MorphType::AGGLUTINATIVE);
/// ```
// =====================================================================
// V2.0.0 Rule Engine Directives
// =====================================================================
/// Represents the standard algorithmic directives for the `Rule Engine Aggregation` phase.
///
/// Note: this utilizes `Untagged Serialization` and does not actually appear in the `JSON`, only the inner variants appear.
///
/// ### `OpenAPI` Schema
/// ```yaml
/// schema: LmsRule
/// description: Untagged enum representing operational execution directives.
/// ```
/// Directives for transliteration and phonetic rendering strategies.
///
/// ### `OpenAPI` Schema
/// ```yaml
/// schema: TransRule
/// description: Phonetic or script transliteration strategies.
/// ```
/// Directives for Unicode normalization logic.
///
/// ### `OpenAPI` Schema
/// ```yaml
/// schema: NormRule
/// description: Unicode standard normalization forms.
/// ```
/// Directives for morphological plural category mapping.
///
/// ### `OpenAPI` Schema
/// ```yaml
/// schema: PluralRule
/// description: Typological rules for determining quantity forms.
/// ```
/// Directives for typographic casing mechanics.
///
/// ### `OpenAPI` Schema
/// ```yaml
/// schema: CasingRule
/// description: Specific typographic constraints for character casing.
/// ```