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; }