tutorial-1 0.1.0

Online store library
Documentation
1
2
3
4
5
6
7
/// Enum for representing product categories.
#[derive(PartialEq, Debug)]
pub enum Category {
    Electronics,
    Clothing,
    Books,
}