Macro to_uppercase

Source
to_uppercase!() { /* proc-macro */ }
Expand description

Returns the uppercase equivalent of this identifier as a string literal.

let as_literal = include_oracle_sql_args::to_uppercase!(param_name);
assert_eq!(as_literal, "PARAM_NAME");