typed-ident 0.0.1

Type-safe identifier validation, inspection, and mutation.
Documentation
// =============================================================================
// TYPES
// =============================================================================

// -----------------------------------------------------------------------------
pub use clap::ValueEnum;

// =============================================================================
// TYPES
// =============================================================================

// -----------------------------------------------------------------------------
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, ValueEnum)]
pub enum Profile {
    Ascii,
    Strict,
    #[default]
    Unicode,
}