A Rust macro for generating new identifiers (names of variables, functions, traits, etc) by concatenating one or more arbitrary parts and applying other manipulations.
//! Shared parsing helpers and constants.
/// Error message used when the user mixes separators of different kinds ("," and ";").
pubconstMIXING_SEP_ERROR:&str=r#"Mixing "," and ";" as separators is not allowed"#;