Skip to main content

cloud_sdk_sanitization/
lib.rs

1#![no_std]
2#![doc = include_str!("../README.md")]
3
4#[cfg(feature = "std")]
5extern crate std;
6
7/// Provider-neutral secret-helper readiness state.
8#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
9pub enum SanitizationStatus {
10    /// Boundary exists, but no secret-handling dependency is admitted.
11    DependencyNotAdmitted,
12}