The keyword const is used to declare constants in Rust:
const ENV: &str = "production";
Constants are traditionally written in uppercase. The constant's name is followed by the constant's data type and its definitive value. The value cannot be changed later.