systemprompt-models 0.2.1

Foundation data models for systemprompt.io AI governance infrastructure. Shared DTOs, config, and domain types consumed by every layer of the MCP governance pipeline.
Documentation
//! Profile style classification.

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ProfileStyle {
    Development,
    Production,
    Staging,
    Test,
    Custom,
}

impl ProfileStyle {
    pub const fn label(&self) -> &'static str {
        match self {
            Self::Development => "Dev",
            Self::Production => "Prod",
            Self::Staging => "Stage",
            Self::Test => "Test",
            Self::Custom => "Custom",
        }
    }
}