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
// SPDX-License-Identifier: MIT OR Apache-2.0
//! Domain newtypes — **parse, don't validate** (G-TYPE / G-DOM).
//!
//! Workload: pure local construction (sequential). Parallelism starts only after
//! typed values reach SSH fan-out. Zero-cost: wrappers are `#[repr(transparent)]`
//! or niche-optimized enums.
//!
//! Rules: private fields, `try_new` only, no `Deref`, no infallible `From` with
//! invariants. Wire DTOs stay primitives; domain carries the proof.
//!
//! ## Modules
//!
//! | Module | Types |
//! |--------|--------|
//! | [`error`] | [`DomainError`], [`secret_nonempty`] |
//! | [`names`] | [`VpsName`], [`SshHost`], [`SshUser`], [`HostTag`] |
//! | [`ports`] | [`SshPort`], [`BindPort`] |
//! | [`limits`] | [`TimeoutMs`], [`CharLimit`] |
//! | [`command`] | [`RemoteCommand`], [`KeyPath`] |
//! | [`time`] | [`Rfc3339Utc`], [`AddedAt`], [`CreatedAt`] |
//! | [`ids`] | [`CorrelationId`] (v4), [`BatchRunId`] (v7) |
//! | [`http_url`] | [`HttpsUrl`], [`AcmeOrderUrl`] |
//! | [`money`] | [`Money`] (**library-only**; no SSH/VPS CLI surface — G-E2E-14) |
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;