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
pub trait ProductLine<SKU> {
    fn update_sku(&mut self, update: SKU);
    fn display(&self) -> String;
    fn get_quantity(&self) -> u32;
}