// Constants begin with an uppercase letterstruct BoldLine {}impl BoldLine { const WIDTH: i8 = 10;}let line_width = BoldLine::WIDTH;//line_width is 10 //BoldLine::WIDTH = 5; //<-Errorprintln!("line_width is {line_width}");