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
// 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
//!
//! The modules themselves are private; every type below is re-exported here, so
//! the module column is plain text while the type column links to the public item.
//!
//! | Module | Types |
//! |--------|--------|
//! | `error` | [`crate::domain::DomainError`], [`crate::domain::secret_nonempty`] |
//! | `names` | [`crate::domain::VpsName`], [`crate::domain::SshHost`], [`crate::domain::SshUser`], [`crate::domain::HostTag`] |
//! | `ports` | [`crate::domain::SshPort`], [`crate::domain::BindPort`] |
//! | `limits` | [`crate::domain::TimeoutMs`], [`crate::domain::CharLimit`] |
//! | `command` | [`crate::domain::RemoteCommand`], [`crate::domain::KeyPath`] |
//! | `time` | [`crate::domain::Rfc3339Utc`], [`crate::domain::AddedAt`], [`crate::domain::CreatedAt`] |
//! | `ids` | [`crate::domain::CorrelationId`] (v4), [`crate::domain::BatchRunId`] (v7) |
//! | `http_url` | [`crate::domain::HttpsUrl`], [`crate::domain::AcmeOrderUrl`] |
//! | `money` | [`crate::domain::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 ;