Enums
In Crabby, the enum
keyword is short for enumerations, it's a custom data type that can be one of several different variants.
For example:
pub enum Types {
Success,
Warning,
Error,
}
In Crabby, the enum
keyword is short for enumerations, it's a custom data type that can be one of several different variants.
For example:
pub enum Types {
Success,
Warning,
Error,
}