Expand description
Bootstrap sequence orchestration.
This module provides type-safe bootstrap sequencing that enforces initialization dependencies at compile time. The sequence ensures that secrets cannot be initialized without a profile, and paths cannot be initialized without secrets.
Modules§
- presets
- Convenience functions for common bootstrap patterns.
Structs§
- Bootstrap
Complete - Proof that bootstrap completed successfully.
- Bootstrap
Sequence - Type-safe bootstrap sequence builder.
- Paths
Initialized - Paths have been initialized (requires secrets).
- Profile
Initialized - Profile has been initialized.
- Secrets
Initialized - Secrets have been initialized (requires profile).
- Uninitialized
- Initial state - nothing initialized.
Traits§
- Bootstrap
State - Marker trait for bootstrap states.