compose-idents 0.3.0

A Rust macro for generating new identifiers (names of variables, functions, traits, etc) by concatenating one or more arbitrary parts and applying other manipulations.
Documentation
1
2
3
4
//! Shared parsing helpers and constants.

/// Error message used when the user mixes separators of different kinds ("," and ";").
pub const MIXING_SEP_ERROR: &str = r#"Mixing "," and ";" as separators is not allowed"#;