Associated Consts
Constant values, which are associated with a struct
Example
impl Person {
const PLANET: String = "Earth".to_string();
// can also refer to a const Person
}Constant values, which are associated with a struct
impl Person {
const PLANET: String = "Earth".to_string();
// can also refer to a const Person
}