sample_shoe_co 0.0.1

A demo crate simulating a shoe company with basic inventory and order processing examples.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[allow(dead_code)]
pub enum Employee {
    Associate {
        name: String,
        id: u32,
        shift: u8,
    },
    Manager {
        name: String,
        id: u32,
        title: String,
    },
}